mirror of
https://github.com/stashapp/stash.git
synced 2025-12-09 09:53:40 +01:00
41 lines
625 B
GraphQL
41 lines
625 B
GraphQL
fragment ConfigGeneralData on ConfigGeneralResult {
|
|
stashes
|
|
databasePath
|
|
generatedPath
|
|
cachePath
|
|
previewPreset
|
|
maxTranscodeSize
|
|
maxStreamingTranscodeSize
|
|
forceMkv
|
|
forceHevc
|
|
username
|
|
password
|
|
maxSessionAge
|
|
logFile
|
|
logOut
|
|
logLevel
|
|
logAccess
|
|
excludes
|
|
scraperUserAgent
|
|
}
|
|
|
|
fragment ConfigInterfaceData on ConfigInterfaceResult {
|
|
soundOnPreview
|
|
wallShowTitle
|
|
wallPlayback
|
|
maximumLoopDuration
|
|
autostartVideo
|
|
showStudioAsText
|
|
css
|
|
cssEnabled
|
|
language
|
|
}
|
|
|
|
fragment ConfigData on ConfigResult {
|
|
general {
|
|
...ConfigGeneralData
|
|
}
|
|
interface {
|
|
...ConfigInterfaceData
|
|
}
|
|
}
|