Make albums sort by direction as well as media does

This commit is contained in:
viktorstrate
2022-02-07 17:08:51 +01:00
parent 91d63ebddc
commit 3c834d705f
31 changed files with 421 additions and 219 deletions

View File

@@ -8,15 +8,20 @@
// ====================================================
export interface userRemoveAlbumPathMutation_userRemoveRootAlbum {
__typename: "Album";
id: string;
__typename: 'Album'
id: string
}
export interface userRemoveAlbumPathMutation {
userRemoveRootAlbum: userRemoveAlbumPathMutation_userRemoveRootAlbum | null;
/**
* Remove a root path from a user, specified by the id of the user and the top album representing the root path.
* This album was returned when creating the path using `userAddRootPath`.
* A list of root paths for a particular user can be retrived from the `User.rootAlbums` path.
*/
userRemoveRootAlbum: userRemoveAlbumPathMutation_userRemoveRootAlbum | null
}
export interface userRemoveAlbumPathMutationVariables {
userId: string;
albumId: string;
userId: string
albumId: string
}