Inputs
CreateCompanyBuyerInputType
Fields for creating a new company buyer.
Fields for creating a new company buyer.
input CreateCompanyBuyerInputType {
id: String!
firstName: String
lastName: String
phone: String
active: Boolean
}
Fields
id ● String! non-null scalar required
The buyer's email address, used as their unique identifier and login.
firstName ● String scalar
The first name of the buyer.
lastName ● String scalar
The last name of the buyer.
phone ● String scalar
The phone number of the buyer.
active ● Boolean scalar
Whether the buyer is active. Defaults to true if not specified.
Member Of
createCompanyBuyer mutation