mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
f1daabab04
https://github.com/hasura/graphql-engine-mono/pull/2352 Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com> GitOrigin-RevId: f9f5d1157524afbe418ba0ca3e3e1d6258eaf9e3
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"
|