mirror of
https://github.com/stashapp/stash.git
synced 2025-12-09 01:44:52 +01:00
* Support setting nested UI values * Accept partial for configureUI * Send partial UI * Save scan, generate and auto-tag options on change * Send partials in saveUI * Save library task options on change
26 lines
481 B
GraphQL
26 lines
481 B
GraphQL
scalar UIConfig
|
|
scalar SavedObjectFilter
|
|
scalar SavedUIOptions
|
|
|
|
extend type ConfigResult {
|
|
ui: UIConfig!
|
|
}
|
|
|
|
extend type SavedFilter {
|
|
object_filter: SavedObjectFilter
|
|
ui_options: SavedUIOptions
|
|
}
|
|
|
|
extend input SaveFilterInput {
|
|
object_filter: SavedObjectFilter
|
|
ui_options: SavedUIOptions
|
|
}
|
|
|
|
extend input SetDefaultFilterInput {
|
|
object_filter: SavedObjectFilter
|
|
ui_options: SavedUIOptions
|
|
}
|
|
|
|
extend type Mutation {
|
|
configureUI(input: Map, partial: Map): UIConfig!
|
|
}
|