OBJECT

Query

Root query

link GraphQL Schema definition

  • type Query {
  • # Show all users.
  • users: [User!]!
  • # Show all groups.
  • groups: [Group!]!
  • # Show all permissions.
  • permissions: [Permission!]!
  • # Show a user from this id.
  • #
  • # Arguments
  • # id:
  • userById(id: Int!): User
  • # Show a user from this username.
  • #
  • # Arguments
  • # username:
  • userByUsername(username: String!): User
  • }

link Require by

This element is not required by anyone