GraphiQL
xxxxxxxxxx
 
1
# Welcome to GraphiQL
2
#
3
# GraphiQL is an in-browser tool for writing, validating, and
4
# testing GraphQL queries.
5
#
6
# Type queries into this side of the screen, and you will see intelligent
7
# typeaheads aware of the current GraphQL type schema and live syntax and
8
# validation errors highlighted within the text.
9
#
10
# GraphQL queries typically start with a "{" character. Lines that start
11
# with a # are ignored.
12
#
13
# An example GraphQL query might look like:
14
#
15
#     {
16
#       field(arg: "value") {
17
#         subField
18
#       }
19
#     }
20
#
21
# Keyboard shortcuts:
22
#
23
#   Prettify query:  Shift-Ctrl-P (or press the prettify button)
24
#
25
#  Merge fragments:  Shift-Ctrl-M (or press the merge button)
26
#
27
#        Run Query:  Ctrl-Enter (or press the play button)
28
#
29
#    Auto Complete:  Ctrl-Space (or just start typing)
30
#
31
​
32
​
1
 
1
​
1
 
1
​
​x
 
​