mirror of
https://github.com/stashapp/stash.git
synced 2025-12-15 12:52:38 +01:00
* Add auto tagging for performers, studios and tags * Fix scene title logging * Fix golang 1.11 compile error * Improve regex pattern. Only log when added * Remove paging from parse query * Add integration test * Fix prefix detection on paths
35 lines
No EOL
496 B
GraphQL
35 lines
No EOL
496 B
GraphQL
query MetadataImport {
|
|
metadataImport
|
|
}
|
|
|
|
query MetadataExport {
|
|
metadataExport
|
|
}
|
|
|
|
query MetadataScan($input: ScanMetadataInput!) {
|
|
metadataScan(input: $input)
|
|
}
|
|
|
|
query MetadataGenerate($input: GenerateMetadataInput!) {
|
|
metadataGenerate(input: $input)
|
|
}
|
|
|
|
query MetadataAutoTag($input: AutoTagMetadataInput!) {
|
|
metadataAutoTag(input: $input)
|
|
}
|
|
|
|
query MetadataClean {
|
|
metadataClean
|
|
}
|
|
|
|
query JobStatus {
|
|
jobStatus {
|
|
progress
|
|
status
|
|
message
|
|
}
|
|
}
|
|
|
|
query StopJob {
|
|
stopJob
|
|
} |