Open tkeesdevs opened 1 year ago
I am trying to do a call using some query, but is not working on PHP, is showing me a empty array
$result = $shop->api()->graph('{ orders(first: 5, sortKey: ID, reverse: true, query: "id:<4944623304880") { edges { cursor node { id name } } pageInfo { hasNextPage hasPreviousPage } } } ');
If I remove the query, it is showing data:
$result = $shop->api()->graph('{ orders(first: 5) { edges { cursor node { id name } } pageInfo { hasNextPage hasPreviousPage } } } ');
if I do the same query on graphql App is working...
someone can helpme?
I am trying to do a call using some query, but is not working on PHP, is showing me a empty array
If I remove the query, it is showing data:
if I do the same query on graphql App is working...
someone can helpme?