mirror of
https://github.com/stashapp/stash.git
synced 2025-12-12 11:22:37 +01:00
* Update apollo client * Overhaul graphql client cache invalidation * Fix tagger studio link display update * Add graphql formatting
20 lines
291 B
GraphQL
20 lines
291 B
GraphQL
query Configuration {
|
|
configuration {
|
|
...ConfigData
|
|
}
|
|
}
|
|
|
|
query Directory($path: String) {
|
|
directory(path: $path) {
|
|
path
|
|
parent
|
|
directories
|
|
}
|
|
}
|
|
|
|
query ValidateStashBox($input: StashBoxInput!) {
|
|
validateStashBoxCredentials(input: $input) {
|
|
valid
|
|
status
|
|
}
|
|
}
|