mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 04:14:39 +03:00
* Update apollo client * Overhaul graphql client cache invalidation * Fix tagger studio link display update * Add graphql formatting
21 lines
291 B
GraphQL
21 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
|
|
}
|
|
}
|