mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 08:26:00 +01:00
* Add types to graphql scalars * Upgrade dependencies * Override UI config type * Remove all IUIConfig casts * Add tableColumns to IUIConfig * Add BoolMap type, set strictScalars * Add PluginConfigMap * Replace any with unknown * Add SavedObjectFilter and SavedUIOptions * Remove unused items from CriterionType
57 lines
986 B
GraphQL
57 lines
986 B
GraphQL
mutation ImageUpdate($input: ImageUpdateInput!) {
|
|
imageUpdate(input: $input) {
|
|
...SlimImageData
|
|
}
|
|
}
|
|
|
|
mutation BulkImageUpdate($input: BulkImageUpdateInput!) {
|
|
bulkImageUpdate(input: $input) {
|
|
...SlimImageData
|
|
}
|
|
}
|
|
|
|
mutation ImagesUpdate($input: [ImageUpdateInput!]!) {
|
|
imagesUpdate(input: $input) {
|
|
...SlimImageData
|
|
}
|
|
}
|
|
|
|
mutation ImageIncrementO($id: ID!) {
|
|
imageIncrementO(id: $id)
|
|
}
|
|
|
|
mutation ImageDecrementO($id: ID!) {
|
|
imageDecrementO(id: $id)
|
|
}
|
|
|
|
mutation ImageResetO($id: ID!) {
|
|
imageResetO(id: $id)
|
|
}
|
|
|
|
mutation ImageDestroy(
|
|
$id: ID!
|
|
$delete_file: Boolean
|
|
$delete_generated: Boolean
|
|
) {
|
|
imageDestroy(
|
|
input: {
|
|
id: $id
|
|
delete_file: $delete_file
|
|
delete_generated: $delete_generated
|
|
}
|
|
)
|
|
}
|
|
|
|
mutation ImagesDestroy(
|
|
$ids: [ID!]!
|
|
$delete_file: Boolean
|
|
$delete_generated: Boolean
|
|
) {
|
|
imagesDestroy(
|
|
input: {
|
|
ids: $ids
|
|
delete_file: $delete_file
|
|
delete_generated: $delete_generated
|
|
}
|
|
)
|
|
}
|