OBJECT

Mutation

link GraphQL Schema definition

  • type Mutation {
  • # Arguments
  • # data: [Not documented]
  • addUser(data: UserInput!): User
  • # Arguments
  • # id: [Not documented]
  • removeUser(id: ID!): User
  • # Arguments
  • # id: [Not documented]
  • # data: [Not documented]
  • updateUser(id: ID!, data: UserInput!): User
  • # Arguments
  • # data: [Not documented]
  • addTestimonial(data: TestimonialInput!): Testimonial
  • # Arguments
  • # id: [Not documented]
  • removeTestimonial(id: ID!): Testimonial
  • # Arguments
  • # id: [Not documented]
  • # data: [Not documented]
  • updateTestimonial(id: ID!, data: TestimonialInput!): Testimonial
  • # Arguments
  • # data: [Not documented]
  • addPermissions(data: RoleInput!): Role
  • # Arguments
  • # role: [Not documented]
  • # permissions: [Not documented]
  • # resources: [Not documented]
  • removePermissions(
  • role: String!,
  • permissions: [String]!,
  • resources: [String]
  • ): Role
  • # Arguments
  • # data: [Not documented]
  • newToken(data: AuthenticationInput!): Authentication
  • # Arguments
  • # refreshToken: [Not documented]
  • refreshToken(refreshToken: String!): Authentication
  • }

link Require by

This element is not required by anyone