OBJECT

RecommendedProducts

link GraphQL Schema definition

  • type RecommendedProducts {
  • # Customers who bought this product also bought these products.
  • #
  • # Arguments
  • # count: number of recommended products to fetch
  • bought(count: Int): [Product]
  • # A shuffled top list of popular products.
  • #
  • # Arguments
  • # count: number of recommended products to fetch
  • shuffledToplist(count: Int): [Product]
  • # Customers who viewed this product also viewed these products.
  • #
  • # Arguments
  • # count: number of recommended products to fetch
  • viewed(count: Int): [Product]
  • }

link Require by