OBJECT

UserCreatePayload

Result of the userCreate mutation

link GraphQL Schema definition

  • type UserCreatePayload {
  • # If set, contains the successfully created user.
  • # If null, the user could not be created because the input data was invalid.
  • # Please use the `userErrors` field to get more details regarding the errors that
  • # occurred.
  • user: User
  • # List of errors describing why the input data was invalid and the user could not
  • # be created.
  • userErrors: [UserMutationErrors!]!
  • }

link Require by