mirror of https://github.com/stashapp/stash.git
61 lines
950 B
GraphQL
61 lines
950 B
GraphQL
fragment ConfigGeneralData on ConfigGeneralResult {
|
|
stashes {
|
|
path
|
|
excludeVideo
|
|
excludeImage
|
|
}
|
|
databasePath
|
|
generatedPath
|
|
cachePath
|
|
calculateMD5
|
|
videoFileNamingAlgorithm
|
|
previewSegments
|
|
previewSegmentDuration
|
|
previewExcludeStart
|
|
previewExcludeEnd
|
|
previewPreset
|
|
maxTranscodeSize
|
|
maxStreamingTranscodeSize
|
|
username
|
|
password
|
|
maxSessionAge
|
|
logFile
|
|
logOut
|
|
logLevel
|
|
logAccess
|
|
createGalleriesFromFolders
|
|
videoExtensions
|
|
imageExtensions
|
|
galleryExtensions
|
|
excludes
|
|
imageExcludes
|
|
scraperUserAgent
|
|
scraperCDPPath
|
|
stashBoxes {
|
|
name
|
|
endpoint
|
|
api_key
|
|
}
|
|
}
|
|
|
|
fragment ConfigInterfaceData on ConfigInterfaceResult {
|
|
soundOnPreview
|
|
wallShowTitle
|
|
wallPlayback
|
|
maximumLoopDuration
|
|
autostartVideo
|
|
showStudioAsText
|
|
css
|
|
cssEnabled
|
|
language
|
|
}
|
|
|
|
fragment ConfigData on ConfigResult {
|
|
general {
|
|
...ConfigGeneralData
|
|
}
|
|
interface {
|
|
...ConfigInterfaceData
|
|
}
|
|
}
|