8.SET Photo

Query 8.SET Photo sets

Photo sets

This example illustrates fetching 8.SET Photo sets using pagination and tag filters.

Currently the 8.SET Photo GraphQL API only returns set definitions without any product data. For details see GraphQL Schema

query {
  setPhoto(after: "6e11a3df-a3a2-4828-a292-29976bfe0696", first: 2, input: {queryType: TAGS, value: {exclude: ["summer"], include: []}}) {
    edges {
      node {
        id:
        tags
        title
        images {
          edges {
            node {
              url
            }
          }
        }
      }
    }
    pageInfo {
      endCursor
      hasNextPage
    }
  }
}

Last updated