INPUT_OBJECT

AddAssociateArgument

An associate object in which all fields are required. This is used to create.

link GraphQL Schema definition

  • input AddAssociateArgument {
  • # The associate groups to link the associate to.
  • associateGroups: [AssociateGroupArgument]
  • # The type of the associate.
  • type: AssociateTypeEnum!
  • # The first name of the associate.
  • firstName: String!
  • # The last name of the associate.
  • lastName: String!
  • # The e-mail address of the associate.
  • email: String!
  • # Whether the associate is able to log in and use the application.
  • active: Boolean!
  • # The language of the associate.
  • language: AssociateLanguageEnum!
  • # Whether an activation mail will be sent upon completion of the creation.
  • sendActivationMail: Boolean!
  • }