GitHub

MagentoSearchProductIncrementalResponse

import { MagentoSearchProductIncrementalResponse } from '@daffodil/search-product/driver/magento'
interface MagentoSearchProductIncrementalResponse {
  __typename: string
  products: {
    __typename?: string;
    items: MagentoProduct[];
    total_count: number;
}
}

Properties

Name Type Description
__typename string
products { __typename?: string; items: MagentoProduct[]; total_count: number; }