1234567891011121314151617181920212223242526272829303132333435 |
- # ===============================================
- # NAVIGATION
- # ===============================================
- extend type Query {
- navigationById(
- id: UUID!
- ): [NavigationItem]
- }
- # -----------------------------------------------
- # MUTATIONS
- # -----------------------------------------------
- extend type Mutation {
- updateNavigation(
- id: UUID!
- name: String!
- items: [JSON]!
- ): DefaultResponse
- }
- # -----------------------------------------------
- # TYPES
- # -----------------------------------------------
- type NavigationItem {
- id: UUID
- type: String
- label: String
- icon: String
- target: String
- openInNewWindow: Boolean
- children: [NavigationItem]
- }
|