mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 12:24:38 +03: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
27 lines
481 B
GraphQL
27 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!
|
|
}
|