mirror of https://github.com/stashapp/stash.git
39 lines
670 B
GraphQL
39 lines
670 B
GraphQL
mutation MetadataImport {
|
|
metadataImport
|
|
}
|
|
|
|
mutation MetadataExport {
|
|
metadataExport
|
|
}
|
|
|
|
mutation ExportObjects($input: ExportObjectsInput!) {
|
|
exportObjects(input: $input)
|
|
}
|
|
|
|
mutation ImportObjects($input: ImportObjectsInput!) {
|
|
importObjects(input: $input)
|
|
}
|
|
|
|
mutation MetadataScan($input: ScanMetadataInput!) {
|
|
metadataScan(input: $input)
|
|
}
|
|
|
|
mutation MetadataGenerate($input: GenerateMetadataInput!) {
|
|
metadataGenerate(input: $input)
|
|
}
|
|
|
|
mutation MetadataAutoTag($input: AutoTagMetadataInput!) {
|
|
metadataAutoTag(input: $input)
|
|
}
|
|
|
|
mutation MetadataClean {
|
|
metadataClean
|
|
}
|
|
|
|
mutation MigrateHashNaming {
|
|
migrateHashNaming
|
|
}
|
|
|
|
mutation StopJob {
|
|
stopJob
|
|
} |