I have requested and been granted “Read All Orders” and “Access Subscription APIS” from my app’s App Setup page. My development store has installed and accepted the permissions updates. The scopes written in my app are: write_products,write_customers,write_draft_orders,read_all_orders,read_orders,read_customers,read_customer_payment_methods and yet when I make the query below, I get
“message”:“Access denied for paymentMethods field.”
{
customers(first: 100) {
edges {
node {
email
id
addresses {
firstName,
id
}
paymentMethods {
edges {
node {
id
}
}
}
}
}
}
}