GitHub

MagentoSearchForProductsResponse

import { MagentoSearchForProductsResponse } from '@daffodil/search-product/driver/magento'
interface MagentoSearchForProductsResponse {
  __typename: string
  products: {
    __typename?: string;
    items: MagentoProduct[];
    page_info: MagentoSearchResultPageInfo;
    aggregations: MagentoAggregation[];
    sort_fields: MagentoProductSortFields;
    total_count: number;
}
}

Properties

Name Type Description
__typename string
products { __typename?: string; items: MagentoProduct[]; page_info: MagentoSearchResultPageInfo; aggregations: MagentoAggregation[]; sort_fields: MagentoProductSortFields; total_count: number; }