I have this grapql query that I runt using the Shopify GraphiQL App.
{
shop {
name
currencyCode
}
shopifyPaymentsAccount {
id
payouts(transactionType: DEPOSIT) {
edges {
node {
id
issuedAt
net {
amount
currencyCode
}
status
transactionType
}
}
}
}
}
The error I get is this one
"Access denied for shopifyPaymentsAccount field. Required access: the `read_shopify_payments` or the `read_shopify_payments_accounts` access scope."
But the thing is, when I installed the Shopify GraphiQL App I clicked in all scope options available. How do I grant access to the GraphiQL app to query payouts data? Where do I even set the scope if I have already ticked in all boxes during the installation?
My end goal is to be able to query the Payouts data using the Shopify Node.js library with a custom app