mirror of https://github.com/stashapp/stash.git
20 lines
433 B
GraphQL
20 lines
433 B
GraphQL
mutation ReloadPlugins {
|
|
reloadPlugins
|
|
}
|
|
|
|
mutation RunPluginTask(
|
|
$plugin_id: ID!
|
|
$task_name: String!
|
|
$args: [PluginArgInput!]
|
|
) {
|
|
runPluginTask(plugin_id: $plugin_id, task_name: $task_name, args: $args)
|
|
}
|
|
|
|
mutation ConfigurePlugin($plugin_id: ID!, $input: Map!) {
|
|
configurePlugin(plugin_id: $plugin_id, input: $input)
|
|
}
|
|
|
|
mutation SetPluginsEnabled($enabledMap: BoolMap!) {
|
|
setPluginsEnabled(enabledMap: $enabledMap)
|
|
}
|