Skip to content

Commit d831ea0

Browse files
author
James Brundage
committed
feat: GetSchemaTypes.gql Example ( Fixes #27 )
1 parent 0c90a59 commit d831ea0

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

Examples/GetSchemaTypes.gql

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
query {
2+
__schema {
3+
types {
4+
name
5+
kind
6+
description
7+
fields {
8+
name
9+
type {
10+
name
11+
}
12+
description
13+
}
14+
}
15+
}
16+
}

0 commit comments

Comments
 (0)