Why am I getting 'UserPrivateData access denied' error in my GraphQL API?

I have created one app on store. And shopify support has provided read user permission for this app But still I am facing issue with graphQL api When I hit graphql api I will get this error “message”: “UserPrivateData access denied”,

{
shop {
staffMembers (first:50) {
edges {
node {
id
name
email
isShopOwner
privateData{
permissions
}

}
}
}
}
}
https://prnt.sc/UUaMXpTtwfnf

When I hit rest api I will get user permissions
https://prnt.sc/Xg8uY85txiZq

You need to generate Admin API access token from the custom app.
https://help.shopify.com/en/manual/apps/app-types/custom-apps

After creating this access token, please check the API scope given.

Cheers,

Suyash

Yes I have given all api scope to created custom app
https://prnt.sc/ZJXzG-2qVkiE

I am able to fetch details with the help of rest api but facing issue with Graphql