mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-19 13:31:43 +03:00
21 lines
785 B
YAML
21 lines
785 B
YAML
|
description: The explained MSSQL query in our documentation
|
||
|
url: /v1/graphql/explain
|
||
|
status: 200
|
||
|
response:
|
||
|
- field: user
|
||
|
sql: "SELECT ISNULL((SELECT [t_user1].[name] AS [name]\nFROM [dbo].[user] AS [t_user1]\nFOR JSON PATH, INCLUDE_NULL_VALUES), '[]')"
|
||
|
plan:
|
||
|
- "SELECT ISNULL((SELECT [t_user1].[name] AS [name]\nFROM [dbo].[user] AS [t_user1]\nFOR JSON PATH, INCLUDE_NULL_VALUES), '[]')"
|
||
|
- " |--Compute Scalar(DEFINE:([Expr1003]=isnull([Expr1001],CONVERT_IMPLICIT(nvarchar(max),'[]',0))))"
|
||
|
- ' |--UDX(([t_user1].[name]))'
|
||
|
- ' |--Clustered Index Scan(OBJECT:([master].[dbo].[user].[PK__user__3213E83F04195C1B] AS [t_user1]))'
|
||
|
query:
|
||
|
query:
|
||
|
query: |
|
||
|
query getUsers {
|
||
|
user {
|
||
|
name
|
||
|
}
|
||
|
}
|
||
|
operationName: "getUsers"
|