A space to discuss GraphQL queries, mutations, troubleshooting, throttling, and best practices.
Hi! I'm getting a unauthorized message on my simple gql query (laravel + react env):
const ORDERS_QUERY = gql`{
orders(first: 10) {
edges {
node {
id
}
}
}
}`;
I have set the scopes properly to my understanding :
SCOPES=read_products,read_script_tags,write_script_tags,read_orders
How can i access the orders?