There is data in network devtools, but not in response

in my query i try to get sku (product id) and product price

... on VariableProduct {
            salePrice
            price
            regularPrice
            sku
            variations {
              nodes {
                regularPrice
                sku
              }
            }
          }

and i get data in network chrome devtools

1. data: {products: {edges: [{cursor: "YXJyYXljb25uZWN0aW9uOjI5MjYwNw==",…},…],…}}

  1. products: {edges: [{cursor: "YXJyYXljb25uZWN0aW9uOjI5MjYwNw==",…},…],…}

    1. edges: [{cursor: "YXJyYXljb25uZWN0aW9uOjI5MjYwNw==",…},…]

      1. 0: {cursor: "YXJyYXljb25uZWN0aW9uOjI5MjYwNw==",…}
      2. 1: {cursor: "YXJyYXljb25uZWN0aW9uOjI5MjI2NQ==", node: {slug: "slug",…}}
      3. 2: {cursor: "YXJyYXljb25uZWN0aW9uOjI5MjI0Nw==", node: {slug: "slug",…}}
      4. 3: {cursor: "YXJyYXljb25uZWN0aW9uOjI5MjIwNQ==", node: {slug: "slug",…}}

        1. cursor: "YXJyYXljb25uZWN0aW9uOjI5MjIwNQ=="
        2. node: {slug: "slug",…}

          1. brands: {edges: [{node: {id: "dGVybToxOTA=", name: "Slow Dlowe"}}]}
          2. databaseId: 292205
          3. image: {sourceUrl: "image",…}
          4. name: "well well"
          5. price: "$65.00"
          6. productCategories: {,…}
          7. regularPrice: "$65.00"
          8. salePrice: null
          9. shortDescription: "shortDescription"
          10. sku: null
          11. slug: "slug"
          12. variations: {nodes: [{regularPrice: "$65.00", sku: "EW22"}]}

      5. 4: {cursor: "YXJyYXljb25uZWN0aW9uOjI5MjE2Ng==", node: {slug: "slug",…}}
      6. 5: {cursor: "YXJyYXljb25uZWN0aW9uOjI5MjEyNQ==", node: {slug: "slug",…}}
      7. 6: {cursor: "YXJyYXljb25uZWN0aW9uOjI5MDU5Mg==", node: {slug: "slug",…}}
      8. 7: {cursor: "YXJyYXljb25uZWN0aW9uOjQxNDk2", node: {slug: "slug",…}}
      9. 8: {cursor: "YXJyYXljb25uZWN0aW9uOjQxNDAx", node: {slug: "slug",…}}
      10. 9: {cursor: "YXJyYXljb25uZWN0aW9uOjQxMzYy", node: {slug: "slug",…}}
      11. 10: {cursor: "YXJyYXljb25uZWN0aW9uOjQxMzMz", node: {slug: "slug",…}}
      12. 11: {cursor: "YXJyYXljb25uZWN0aW9uOjQxMjk3", node: {slug: "slug",…}}

    2. pageInfo: {hasNextPage: true, hasPreviousPage: false, total: 70}

2. extensions: {debug: [{type: "DEBUG_LOGS_INACTIVE",…}]}

but in response apollo client this data doesn’t exist

1. {edges: Array(12), pageInfo: {…}}

  1. edges: Array(12)

    1. 0: {cursor: 'YXJyYXljb25uZWN0aW9uOjI5MjYwNw==', node: {…}}
    2. 1: {cursor: 'YXJyYXljb25uZWN0aW9uOjI5MjI2NQ==', node: {…}}
    3. 2:

      1. cursor: "YXJyYXljb25uZWN0aW9uOjI5MjI0Nw=="
      2. node:

        1. brands: {edges: Array(1)}
        2. databaseId: 292247
        3. image: {sourceUrl: 'sourceUrl', srcSet: 'srcSet', sizes: '(max-width: 250px) 100vw, 250px', altText: 'Green green'}
        4. name: "Green green"
        5. productCategories: {edges: Array(1)}
        6. shortDescription: "Green green"
        7. slug: "green-green"
        8. [[Prototype]]: Object

      3. [[Prototype]]: Object

    4. 3: {cursor: 'YXJyYXljb25uZWN0aW9uOjI5MjIwNQ==', node: {…}}
    5. 4: {cursor: 'YXJyYXljb25uZWN0aW9uOjI5MjE2Ng==', node: {…}}
    6. 5: {cursor: 'YXJyYXljb25uZWN0aW9uOjI5MjEyNQ==', node: {…}}
    7. 6: {cursor: 'YXJyYXljb25uZWN0aW9uOjI5MDU5Mg==', node: {…}}
    8. 7: {cursor: 'YXJyYXljb25uZWN0aW9uOjQxNDk2', node: {…}}
    9. 8: {cursor: 'YXJyYXljb25uZWN0aW9uOjQxNDAx', node: {…}}
    10. 9: {cursor: 'YXJyYXljb25uZWN0aW9uOjQxMzYy', node: {…}}
    11. 10: {cursor: 'YXJyYXljb25uZWN0aW9uOjQxMzMz', node: {…}}
    12. 11: {cursor: 'YXJyYXljb25uZWN0aW9uOjQxMjk3', node: {…}}
    13. length: 12

can someone help me with this issue. please :pray:

Hi @Danila_Kirillov :wave: welcome to the community forum! More info would be helpful here, there are a lot of ...s that are obscuring some information that could be critical. What is the __typename of the entities being returned?