OBJECT

Supplier

A single supplier

link GraphQL Schema definition

  • type Supplier {
  • # Unique supplier ID.
  • id: Int!
  • # The tag's display name.
  • name: String!
  • # The tag's display name.
  • abn: String
  • # The tag's display name.
  • email: String
  • # The tag's display name.
  • office_phone: String
  • # The tag's display name.
  • mobile: String
  • # Mailing address.
  • address: Address
  • # Free text comments.
  • comments: String
  • # The contacts associated with this supplier
  • contacts: [Contact]
  • # An ID used to link to an external application.
  • external_id: String
  • # True if the supplier is active and visible in the UI, false otherwise.
  • is_active: Boolean!
  • # The user that made the last change.
  • modified_by: User
  • # The date/time the last change was made in UTC+0.
  • modified_time: DateTime
  • # The related documents.
  • documents: [SupplierDocument]
  • }