I think you can also simplify your permission with...
# random
a
I think you can also simplify your permission with
Copy code
query ($user_id: ID!, $node_id: ID!) {
  SomeUserExists(filter: {
      id: $user_id
      account_some: {
        id: $node_id
      }
  })
}
And yes I agree it could be perfect to fetch all the data associated to the connected user but I guess less flexible
👍 1