Distributor
Distributor
type Distributor {
id: String!
name: String!
uniqueIdNumber: String!
integrators: [Integrator!]!
users: [User!]!
address: String!
city: String!
zipCode: String!
country: String!
isGoogleOauthMandatory: Boolean!
isMicrosoftOauthMandatory: Boolean!
createdAt: DateTime!
updatedAt: DateTime!
}
Fields
Distributor.id ● String! non-null scalar
The ID of the distributor
Distributor.name ● String! non-null scalar
The name of the distributor
Distributor.uniqueIdNumber ● String! non-null scalar
The unique ID number of the integrator
Distributor.integrators ● [Integrator!]! non-null object
The integrators that belong to the distributor
Distributor.users ● [User!]! non-null object
The users that belong to the distributor
Distributor.address ● String! non-null scalar
The address of the distributor
Distributor.city ● String! non-null scalar
The city of the distributor
Distributor.zipCode ● String! non-null scalar
The zip code of the distributor
Distributor.country ● String! non-null scalar
The country of the distributor
Distributor.isGoogleOauthMandatory ● Boolean! non-null scalar
The flag that indicates if the user related to this distributor is mandatory to use Google OAuth
Distributor.isMicrosoftOauthMandatory ● Boolean! non-null scalar
The flag that indicates if the user related to this distributor is mandatory to use Google OAuth
Distributor.createdAt ● DateTime! non-null scalar
The date and time when the distributor was created
Distributor.updatedAt ● DateTime! non-null scalar
The date and time when the distributor was last updated
Returned By
createDistributor mutation ● deleteDistributor mutation ● findDistributorById query ● getAllDistributors query ● updateDistributorInfos mutation ● updateDistributorOauthProviderRule mutation
Member Of
CreatedUser object ● GetIntegratorInfosOutput object ● Integrator object ● MeOutput object ● SanitizedUser object ● User object