GetProductsByIdParameters
Definition of graphql parameters for getting products by id
interface GetProductsByIdParameters extends BaseParameters {
currencyCode?: CurrencyCode;
entityIds?: number[];
hideOutOfStock?: boolean;
ids?: string[];
optionsLimit?: number;
variantsLimit?: number;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
currencyCode | Optional | CurrencyCode | Currency Code e.g USD, GBP, EUR |
entityIds | Optional | number[] | Products Entity ID e.g (117, 144, 12) |
hideOutOfStock | Optional | boolean | Determine if the list should hide out of stock items |
ids | Optional | string[] | Products GraphQL Key/IDs e.g (8sdf7df7df8, 8fg74hhdd) |
optionsLimit | Optional | number | Limit the number of options returned |
variantsLimit | Optional | number | Limit the number of variants returned |