Schema

Scalars

Enums

Objects

Input Objects

AdminUserInput (INPUT OBJECT)

A MBT company admin, someone who can login and represent the company. They will have the company_admin role but can also have the broker and broker_manager roles.

Schema Definition

input AdminUserInput {   # Their login email
email: String!   # Their name
name: String!   # A list of extra roles to assign to the user.
roles: [Role!]   # The name of the site the user will be grouped into, must exist if set, else is set to the companies default site
siteName: String   # A contact number for the user
telephone: String }