mirror of
https://github.com/stashapp/stash.git
synced 2025-12-07 17:02:38 +01:00
* Update apollo client * Overhaul graphql client cache invalidation * Fix tagger studio link display update * Add graphql formatting
11 lines
216 B
GraphQL
11 lines
216 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)
|
|
}
|