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
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
ProductSupplier.deletedAt ● ISO8601DateTime deprecated scalar
DEPRECATED
Use archived_at instead. This field will be removed in the future.
ProductSupplier.id ● ID! non-null scalar
ProductSupplier.moq ● BigDecimal scalar
Minimum order quantity from this supplier
ProductSupplier.originCountry ● String scalar
ProductSupplier.originPort ● String scalar
ProductSupplier.product ● Product! non-null object
The product associated with this supplier
ProductSupplier.productId ● ID! non-null scalar
ProductSupplier.supplier ● SupplySupplier! non-null object
The supplier details
ProductSupplier.supplierId ● ID! non-null scalar
ProductSupplier.supplierProductId ● String scalar
The product ID used by the supplier
ProductSupplier.updatedAt ● ISO8601DateTime! non-null scalar
Member Of
Product object