mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 16:34:02 +01:00
55 lines
1.2 KiB
GraphQL
55 lines
1.2 KiB
GraphQL
mutation GalleryCreate($input: GalleryCreateInput!) {
|
|
galleryCreate(input: $input) {
|
|
...GalleryData
|
|
}
|
|
}
|
|
|
|
mutation GalleryUpdate($input: GalleryUpdateInput!) {
|
|
galleryUpdate(input: $input) {
|
|
...GalleryData
|
|
}
|
|
}
|
|
|
|
mutation BulkGalleryUpdate($input: BulkGalleryUpdateInput!) {
|
|
bulkGalleryUpdate(input: $input) {
|
|
...GalleryData
|
|
}
|
|
}
|
|
|
|
mutation GalleriesUpdate($input: [GalleryUpdateInput!]!) {
|
|
galleriesUpdate(input: $input) {
|
|
...GalleryData
|
|
}
|
|
}
|
|
|
|
mutation GalleryDestroy(
|
|
$ids: [ID!]!
|
|
$delete_file: Boolean
|
|
$delete_generated: Boolean
|
|
) {
|
|
galleryDestroy(
|
|
input: {
|
|
ids: $ids
|
|
delete_file: $delete_file
|
|
delete_generated: $delete_generated
|
|
}
|
|
)
|
|
}
|
|
|
|
mutation AddGalleryImages($gallery_id: ID!, $image_ids: [ID!]!) {
|
|
addGalleryImages(input: { gallery_id: $gallery_id, image_ids: $image_ids })
|
|
}
|
|
|
|
mutation RemoveGalleryImages($gallery_id: ID!, $image_ids: [ID!]!) {
|
|
removeGalleryImages(input: { gallery_id: $gallery_id, image_ids: $image_ids })
|
|
}
|
|
|
|
mutation SetGalleryCover($gallery_id: ID!, $cover_image_id: ID!) {
|
|
setGalleryCover(
|
|
input: { gallery_id: $gallery_id, cover_image_id: $cover_image_id }
|
|
)
|
|
}
|
|
|
|
mutation ResetGalleryCover($gallery_id: ID!) {
|
|
resetGalleryCover(input: { gallery_id: $gallery_id })
|
|
}
|