mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 20:34:37 +03:00
* Studio image and parent studio support in scene tagger * Refactor studio backend and add studio tagger --------- Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
22 lines
605 B
GraphQL
22 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)
|
|
}
|