Untitled

 avatar
unknown
graphqlschema
16 days ago
406 B
1
Indexable
{
  collection(id: "gid://shopify/Collection/35075588159") {
    products(first: 20) {
      edges {
        node {
          id
          title
          handle
          description
          images(first: 1) {
            edges {
              node {
                src
              }
            }
          }
        }
        cursor
      }
      pageInfo {
        hasNextPage
      }
    }
  }
}
Leave a Comment