stash/graphql/documents/data/config.graphql

35 lines
524 B
GraphQL
Raw Normal View History

fragment ConfigGeneralData on ConfigGeneralResult {
stashes
databasePath
generatedPath
maxTranscodeSize
maxStreamingTranscodeSize
username
password
logFile
logOut
logLevel
logAccess
excludes
}
2019-08-22 22:24:14 +00:00
fragment ConfigInterfaceData on ConfigInterfaceResult {
soundOnPreview
wallShowTitle
maximumLoopDuration
autostartVideo
showStudioAsText
2019-08-22 22:24:14 +00:00
css
cssEnabled
2020-02-06 21:42:29 +00:00
language
2019-08-22 22:24:14 +00:00
}
fragment ConfigData on ConfigResult {
general {
...ConfigGeneralData
}
2019-08-22 22:24:14 +00:00
interface {
...ConfigInterfaceData
}
}