| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 | # ====================== ## Wiki.js GraphQL Schema ## ====================== ## DIRECTIVES# ----------directive @auth(requires: [String]) on QUERY | FIELD_DEFINITION | ARGUMENT_DEFINITION# TYPES# -----# Generic Key Value Pairtype KeyValuePair {  key: String!  value: String!}# General Key Value Pair Inputinput KeyValuePairInput {  key: String!  value: String!}# Generic Mutation Responsetype DefaultResponse {  responseResult: ResponseStatus}# Mutation Statustype ResponseStatus {  succeeded: Boolean!  errorCode: Int!  slug: String!  message: String}# ROOT# ----# Query (Read)type Query# Mutations (Create, Update, Delete)type Mutation# Subscriptions (Push, Real-time)type Subscription
 |