mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 16:34:02 +01:00
* Merge/adapt from yoshnopa:defaultDetails * Deprecate and remove default filter calls * Fix weird behaviour when clicking set as default * Update deprecated get/set default filter resolvers * Add config migration --------- Co-authored-by: yoshnopa <usingusenet@protonmail.com>
21 lines
377 B
GraphQL
21 lines
377 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 type Mutation {
|
|
configureUI(input: Map, partial: Map): UIConfig!
|
|
}
|