Objects

CompanyType

Type containing company information

Type containing company information

type CompanyType {
  id: String!
  name: String
  vatNumber: String
  exVat: Boolean!
  limitedProductAccess: Boolean!
  addresses: [CompanyAddressType]
  buyers: [CompanyBuyerType]
}

Fields

id ● String! non-null scalar required

The unique identifier for the company

name ● String scalar

The name of the company

vatNumber ● String scalar

The VAT number

exVat ● Boolean! non-null scalar required

Whether the company is exempt from VAT

limitedProductAccess ● Boolean! non-null scalar required

Whether the company is limited to assigned pricelists

addresses ● [CompanyAddressType] list object

The addresses of the company

buyers ● [CompanyBuyerType] list object

The buyers associated with the company

Returned By

getCompany query