mirror of https://github.com/stashapp/stash.git
32 lines
501 B
GraphQL
32 lines
501 B
GraphQL
fragment ConfigGeneralData on ConfigGeneralResult {
|
|
stashes
|
|
databasePath
|
|
generatedPath
|
|
maxTranscodeSize
|
|
maxStreamingTranscodeSize
|
|
username
|
|
password
|
|
logFile
|
|
logOut
|
|
logLevel
|
|
logAccess
|
|
}
|
|
|
|
fragment ConfigInterfaceData on ConfigInterfaceResult {
|
|
soundOnPreview
|
|
wallShowTitle
|
|
maximumLoopDuration
|
|
autostartVideo
|
|
showStudioAsText
|
|
css
|
|
cssEnabled
|
|
}
|
|
|
|
fragment ConfigData on ConfigResult {
|
|
general {
|
|
...ConfigGeneralData
|
|
}
|
|
interface {
|
|
...ConfigInterfaceData
|
|
}
|
|
} |