mirror of https://github.com/stashapp/stash.git
40 lines
774 B
GraphQL
40 lines
774 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($input: CleanMetadataInput!) {
|
|
metadataClean(input: $input)
|
|
}
|
|
|
|
mutation MigrateHashNaming {
|
|
migrateHashNaming
|
|
}
|
|
|
|
mutation BackupDatabase($input: BackupDatabaseInput!) {
|
|
backupDatabase(input: $input)
|
|
}
|