mirror of https://github.com/stashapp/stash.git
26 lines
241 B
GraphQL
26 lines
241 B
GraphQL
![]() |
query Plugins {
|
||
|
plugins {
|
||
|
id
|
||
|
name
|
||
|
description
|
||
|
url
|
||
|
version
|
||
|
|
||
|
tasks {
|
||
|
name
|
||
|
description
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
query PluginTasks {
|
||
|
pluginTasks {
|
||
|
name
|
||
|
description
|
||
|
plugin {
|
||
|
id
|
||
|
name
|
||
|
}
|
||
|
}
|
||
|
}
|