mirror of
https://github.com/stashapp/stash.git
synced 2025-12-07 17:02:38 +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
21 lines
605 B
GraphQL
21 lines
605 B
GraphQL
mutation SubmitStashBoxFingerprints(
|
|
$input: StashBoxFingerprintSubmissionInput!
|
|
) {
|
|
submitStashBoxFingerprints(input: $input)
|
|
}
|
|
|
|
mutation StashBoxBatchPerformerTag($input: StashBoxBatchTagInput!) {
|
|
stashBoxBatchPerformerTag(input: $input)
|
|
}
|
|
|
|
mutation StashBoxBatchStudioTag($input: StashBoxBatchTagInput!) {
|
|
stashBoxBatchStudioTag(input: $input)
|
|
}
|
|
|
|
mutation SubmitStashBoxSceneDraft($input: StashBoxDraftSubmissionInput!) {
|
|
submitStashBoxSceneDraft(input: $input)
|
|
}
|
|
|
|
mutation SubmitStashBoxPerformerDraft($input: StashBoxDraftSubmissionInput!) {
|
|
submitStashBoxPerformerDraft(input: $input)
|
|
}
|