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
| Name | Type | Description |
|---|---|---|
_id | ID! | Internal database identifier. |
createdAt | Date! | Date when the supplier was created. |
modifiedAt | Date! | Date when the supplier was last modified. |
name | String! | Supplier name. |
addresses | [Address!]! | List of addresses for the supplier. |
contacts | [SupplierContact!]! | List of contact persons for the supplier. |
taxInformation | String | Tax identification number or tax information. |
reporting | SupplierReporting | Reporting configuration for supplier data access. |