I'm having issues with permissions, and now I'm ge...
# orm-help
c
I'm having issues with permissions, and now I'm getting an internal server error eu-west-1systemcjhke6dye1vuf0170a6r12irv
I have the following 3 rules - the update and read work fine, but the create doesn't work...
Copy code
- operation: ProductFeature.read
    authenticated: true
    query: src/permissions/admin.graphql

  - operation: ProductFeature.create
    authenticated: true
    query: src/permissions/admin.graphql

  - operation: ProductFeature.update
    authenticated: true
    query: src/permissions/admin.graphql
Query is simple:
Copy code
query AdminQuery($user_id: ID!) {
  SomeUserExists(filter: {
    id: $user_id,
    admin: true
  })
}