mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 08:26:00 +01:00
* Add clean generate task * Add to library tasks * Save and read defaults * Stop handling and logging * Make filename parsing more robust
55 lines
1.1 KiB
GraphQL
55 lines
1.1 KiB
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 MetadataIdentify($input: IdentifyMetadataInput!) {
|
|
metadataIdentify(input: $input)
|
|
}
|
|
|
|
mutation MetadataClean($input: CleanMetadataInput!) {
|
|
metadataClean(input: $input)
|
|
}
|
|
|
|
mutation MetadataCleanGenerated($input: CleanGeneratedInput!) {
|
|
metadataCleanGenerated(input: $input)
|
|
}
|
|
|
|
mutation MigrateHashNaming {
|
|
migrateHashNaming
|
|
}
|
|
|
|
mutation BackupDatabase($input: BackupDatabaseInput!) {
|
|
backupDatabase(input: $input)
|
|
}
|
|
|
|
mutation AnonymiseDatabase($input: AnonymiseDatabaseInput!) {
|
|
anonymiseDatabase(input: $input)
|
|
}
|
|
|
|
mutation OptimiseDatabase {
|
|
optimiseDatabase
|
|
}
|