Skip to main content

Supplier Object

Description

Represents a supplier (vendor or manufacturer) that provides inventory items.

Declaration

type Supplier {
_id: ID!
createdAt: Date!
modifiedAt: Date!
name: String!
addresses: [Address!]!
contacts: [SupplierContact!]!
taxInformation: String
reporting: SupplierReporting
}

Fields

NameTypeDescription
_idID!Internal database identifier.
createdAtDate!Date when the supplier was created.
modifiedAtDate!Date when the supplier was last modified.
nameString!Supplier name.
addresses[Address!]!List of addresses for the supplier.
contacts[SupplierContact!]!List of contact persons for the supplier.
taxInformationStringTax identification number or tax information.
reportingSupplierReportingReporting configuration for supplier data access.