Skip to main content

ProductSearchProduct

No description

type ProductSearchProduct implements IBaseProductSearch {
id: Int!
class: ProductClass!
uuid: String!
createdAt: DateTime
lastModifiedAt: DateTime
indexedAt: DateTime
isDeleted: Boolean!
status: ProductStatus!
effectivePrice: Float
productId: Int!
sku: String!
}

Fields

ProductSearchProduct.id ● Int! non-null scalar

Resource primary identifier

ProductSearchProduct.class ● ProductClass! non-null enum

The class of the request resource

ProductSearchProduct.uuid ● String! non-null scalar

The UUID of the product or cluster

ProductSearchProduct.createdAt ● DateTime scalar

The creation date of this product or cluster

ProductSearchProduct.lastModifiedAt ● DateTime scalar

The last modified date of this product or cluster

ProductSearchProduct.indexedAt ● DateTime scalar

The date this product or cluster was indexed

ProductSearchProduct.isDeleted ● Boolean! non-null scalar

Whether this product or cluster is marked for deleted

ProductSearchProduct.status ● ProductStatus! non-null enum

The status of this product or cluster

ProductSearchProduct.effectivePrice ● Float scalar

The effective price for this product/cluster based on priceSheetId priority. Computed at query time using the provided priceSheetIds, falling back to default price.

ProductSearchProduct.productId ● Int! non-null scalar

The ID of this product

ProductSearchProduct.sku ● String! non-null scalar

The SKU of this product

Interfaces

IBaseProductSearch interface

Interface for the BaseProduct Type, where both Products and clusters derive from