mirror of
https://git.vectorsigma.ru/public/photoview.git
synced 2026-08-03 21:59:12 +00:00
Make albums sort by direction as well as media does
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user