mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 12:31:52 +03:00
a9e3a1b4bd
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/2495 GitOrigin-RevId: ef250a0796200be6b75363b4275eb8a7ae780154
22 lines
481 B
YAML
22 lines
481 B
YAML
- description: |
|
|
Cannot see fields you don't have access to.
|
|
url: /v1/graphql
|
|
status: 200
|
|
headers:
|
|
X-Hasura-Role: empty_perms
|
|
response:
|
|
errors:
|
|
- extensions:
|
|
path: $.selectionSet.hasura_test_article.selectionSet.id
|
|
code: validation-failed
|
|
message: "field \"id\" not found in type: 'hasura_test_article'"
|
|
query:
|
|
query: |
|
|
query {
|
|
hasura_test_article {
|
|
id
|
|
title
|
|
content
|
|
}
|
|
}
|