mirror of
https://github.com/stashapp/stash.git
synced 2025-12-12 11:22:37 +01: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>
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)
|
|
}
|