mirror of https://github.com/Requarks/wiki.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
1.5 KiB
80 lines
1.5 KiB
# ===============================================
|
|
# NAVIGATION
|
|
# ===============================================
|
|
|
|
extend type Query {
|
|
navigation: NavigationQuery
|
|
}
|
|
|
|
extend type Mutation {
|
|
navigation: NavigationMutation
|
|
}
|
|
|
|
# -----------------------------------------------
|
|
# QUERIES
|
|
# -----------------------------------------------
|
|
|
|
type NavigationQuery {
|
|
tree: [NavigationTree]!
|
|
config: NavigationConfig!
|
|
}
|
|
|
|
# -----------------------------------------------
|
|
# MUTATIONS
|
|
# -----------------------------------------------
|
|
|
|
type NavigationMutation {
|
|
updateTree(
|
|
tree: [NavigationTreeInput]!
|
|
): DefaultResponse @auth(requires: ["manage:navigation", "manage:system"])
|
|
updateConfig(
|
|
mode: NavigationMode!
|
|
): DefaultResponse @auth(requires: ["manage:navigation", "manage:system"])
|
|
}
|
|
|
|
# -----------------------------------------------
|
|
# TYPES
|
|
# -----------------------------------------------
|
|
|
|
type NavigationTree {
|
|
locale: String!
|
|
items: [NavigationItem]!
|
|
}
|
|
|
|
input NavigationTreeInput {
|
|
locale: String!
|
|
items: [NavigationItemInput]!
|
|
}
|
|
|
|
type NavigationItem {
|
|
id: String!
|
|
kind: String!
|
|
label: String
|
|
icon: String
|
|
targetType: String
|
|
target: String
|
|
visibilityMode: String
|
|
visibilityGroups: [Int]
|
|
}
|
|
|
|
input NavigationItemInput {
|
|
id: String!
|
|
kind: String!
|
|
label: String
|
|
icon: String
|
|
targetType: String
|
|
target: String
|
|
visibilityMode: String
|
|
visibilityGroups: [Int]
|
|
}
|
|
|
|
type NavigationConfig {
|
|
mode: NavigationMode!
|
|
}
|
|
|
|
enum NavigationMode {
|
|
NONE
|
|
TREE
|
|
MIXED
|
|
STATIC
|
|
}
|