mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 13:02:11 +03:00
fc17132930
GitOrigin-RevId: 720c0e0c775c9418aea569d3f87875236fdcebfe
19 lines
418 B
YAML
19 lines
418 B
YAML
description: Explain query
|
|
url: /v1/graphql/explain
|
|
status: 200
|
|
response:
|
|
- field: user
|
|
sql:
|
|
"SELECT ISNULL((SELECT [t_user1].[id] AS [id],\n [t_user1].[name] AS\
|
|
\ [name],\n [t_user1].[age] AS [age]\nFROM [dbo].[user] AS [t_user1]\nWHERE ((1=1))\nFOR JSON PATH), '[]')"
|
|
query:
|
|
query:
|
|
query: |
|
|
query {
|
|
user{
|
|
id
|
|
name
|
|
age
|
|
}
|
|
}
|