2020-05-21 18:50:25 +03:00
|
|
|
description: Explain query
|
|
|
|
url: /v1/graphql/explain
|
|
|
|
status: 200
|
|
|
|
response:
|
|
|
|
- field: user
|
|
|
|
sql: "SELECT coalesce(json_agg(\"root\" ), '[]' ) AS \"root\" FROM (SELECT row_to_json((SELECT\
|
2022-07-22 18:27:42 +03:00
|
|
|
\ \"_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 ('true') ) AS\
|
|
|
|
\ \"_root.base\" ) AS \"_root\" "
|
2020-05-21 18:50:25 +03:00
|
|
|
plan:
|
|
|
|
- Aggregate (cost=40.00..40.01 rows=1 width=32)
|
|
|
|
- ' -> Seq Scan on "user" (cost=0.00..22.00 rows=1200 width=40)'
|
|
|
|
- ' SubPlan 1'
|
|
|
|
- ' -> Result (cost=0.00..0.01 rows=1 width=32)'
|
|
|
|
query:
|
|
|
|
query:
|
|
|
|
query: |
|
|
|
|
query {
|
|
|
|
user{
|
|
|
|
id
|
|
|
|
name
|
|
|
|
age
|
|
|
|
}
|
|
|
|
}
|