ProductSupplier
Represents the relationship between a product and a supplier, including sourcing details such as minimum order quantity and origin information.
type ProductSupplier {
archivedAt: ISO8601DateTime
createdAt: ISO8601DateTime!
deletedAt: ISO8601DateTime @deprecated
id: ID!
moq: BigDecimal
originCountry: String
originPort: String
product: Product!
productId: ID!
supplier: SupplySupplier!
supplierId: ID!
supplierProductId: String
updatedAt: ISO8601DateTime!
}
Fields
ProductSupplier.archivedAt ● ISO8601DateTime scalar common
The "Archived At" field denotes the date and time that the product supplier was archived. If the product supplier has not been archived, this field will be null.
ProductSupplier.createdAt ● ISO8601DateTime! non-null scalar common
ProductSupplier.deletedAt ● ISO8601DateTime deprecated scalar common
DEPRECATED
Use archived_at instead. This field will be removed in the future.
ProductSupplier.id ● ID! non-null scalar common
ProductSupplier.moq ● BigDecimal scalar common
Minimum order quantity from this supplier
ProductSupplier.originCountry ● String scalar common
ProductSupplier.originPort ● String scalar common
ProductSupplier.product ● Product! non-null object products
The product associated with this supplier
ProductSupplier.productId ● ID! non-null scalar common
ProductSupplier.supplier ● SupplySupplier! non-null object suppliers
The supplier details
ProductSupplier.supplierId ● ID! non-null scalar common
ProductSupplier.supplierProductId ● String scalar common
The product ID used by the supplier
ProductSupplier.updatedAt ● ISO8601DateTime! non-null scalar common
Member Of
Product object