mirror of
https://github.com/stashapp/stash.git
synced 2025-12-08 09:23:38 +01:00
20 lines
297 B
GraphQL
20 lines
297 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
|
|
}
|
|
}
|