Have your say in Community Polls: What was/is your greatest motivation to start your own business?
Our Partner & Developer boards on the community are moving to a brand new home: the .dev community forums! While you can still access past discussions here, for all your future app and storefront building questions, head over to the new forums.

GraphQL query works with App but not through HTTP call

GraphQL query works with App but not through HTTP call

garyrgilbert
Shopify Partner
431 41 186

 

Hello,

 

I have this GraphQL query which returns the correct results using the GraphQL app from shopify, but returns zero results when calling it via a Private App.

 

query ($first: Int!, $query: String, $before: String, $after: String) {
  orders(first: $first, before: $before, after: $after, query: $query) {
    pageInfo {
      hasNextPage
      hasPreviousPage
    }
    edges {
      cursor
      node {
        createdAt
        lineItems(first: 20) {
          edges {
            node {
              variant {
                id
              }
              product {
                id
              }
            }
          }
        }
      }
    }
  }
}

 

{
  "query":"created_at:>=2021-12-02",
  "first":10
}

 

I thought it might be a scoping issue but I have read access to everything. Again this query returns the correct information when using the GraphQL app from shopify (https://shopify-graphiql-app.shopifycloud.com/) But when I send the query over the wire I get zero results back.

 

If I remove the query "created_ad:>=2021-12-02" I then get results start at the first order the store ever had. Not exactly what I want.

 

Any ideas what might be happening?

 

Cheers,

 

Gary

- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
Reply 1 (1)

csam
Shopify Staff (Retired)
267 40 51

Hi @garyrgilbert 

 

I haven't been able to replicate this result through my testing - could you please share the x-request-id found in the response header from Shopify? I will try to take a look in our logs to find more information.

 

Thanks!

To learn more visit the Shopify Help Center or the Community Blog.