mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
ee15c804bc
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5080 GitOrigin-RevId: 58e5e6aab136617d1bbfc6621c89942da358b04d
32 lines
1.0 KiB
YAML
32 lines
1.0 KiB
YAML
description: Explain query with permissions
|
|
url: /v1/graphql/explain
|
|
status: 200
|
|
response:
|
|
- field: user
|
|
sql: "SELECT coalesce(json_agg(\"root\" ), '[]' ) AS \"root\" FROM (SELECT row_to_json((SELECT\
|
|
\ \"_e\" FROM (SELECT \"_root.base\".\"id\" AS \"id\", \"_root.base\".\"name\"\
|
|
\ AS \"name\", \"_root.base\".\"age\" AS \"age\" ) AS \"_e\" ) ) AS\
|
|
\ \"root\" FROM (SELECT * FROM \"public\".\"user\" WHERE (((\"public\".\"\
|
|
user\".\"id\") = (('1')::integer)) OR (((\"public\".\"user\".\"id\") IS NULL)\
|
|
\ AND ((('1')::integer) IS NULL))) ) AS \"_root.base\" ) AS \"_root\"\
|
|
\ "
|
|
plan:
|
|
- Aggregate (cost=8.19..8.20 rows=1 width=32)
|
|
- ' -> Index Scan using user_pkey on "user" (cost=0.15..8.17 rows=1 width=40)'
|
|
- ' Index Cond: (id = 1)'
|
|
- ' SubPlan 1'
|
|
- ' -> Result (cost=0.00..0.01 rows=1 width=32)'
|
|
query:
|
|
user:
|
|
X-Hasura-Role: user
|
|
X-Hasura-User-Id: '1'
|
|
query:
|
|
query: |
|
|
query {
|
|
user{
|
|
id
|
|
name
|
|
age
|
|
}
|
|
}
|