stash/graphql/documents/data/config.graphql

61 lines
950 B
GraphQL
Raw Normal View History

fragment ConfigGeneralData on ConfigGeneralResult {
stashes {
path
excludeVideo
excludeImage
}
databasePath
generatedPath
cachePath
2020-08-06 01:21:14 +00:00
calculateMD5
videoFileNamingAlgorithm
previewSegments
previewSegmentDuration
previewExcludeStart
previewExcludeEnd
previewPreset
maxTranscodeSize
maxStreamingTranscodeSize
username
password
maxSessionAge
logFile
logOut
logLevel
logAccess
createGalleriesFromFolders
videoExtensions
imageExtensions
galleryExtensions
excludes
imageExcludes
scraperUserAgent
scraperCDPPath
2020-09-14 07:13:35 +00:00
stashBoxes {
name
endpoint
api_key
}
}
2019-08-22 22:24:14 +00:00
fragment ConfigInterfaceData on ConfigInterfaceResult {
soundOnPreview
wallShowTitle
wallPlayback
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
}
}