mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 08:26:00 +01:00
33 lines
327 B
GraphQL
33 lines
327 B
GraphQL
query Plugins {
|
|
plugins {
|
|
id
|
|
name
|
|
enabled
|
|
description
|
|
url
|
|
version
|
|
|
|
tasks {
|
|
name
|
|
description
|
|
}
|
|
|
|
hooks {
|
|
name
|
|
description
|
|
hooks
|
|
}
|
|
}
|
|
}
|
|
|
|
query PluginTasks {
|
|
pluginTasks {
|
|
name
|
|
description
|
|
plugin {
|
|
id
|
|
name
|
|
enabled
|
|
}
|
|
}
|
|
}
|