需要JavaScript以使用API沙盒。
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 starts
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 above)
24
#
25
# Merge Query: Shift-Ctrl-M (or press the merge button above)
26
#
27
# Run Query: Ctrl-Enter (or press the play button above)
28
#
29
# Auto Complete: Ctrl-Space (or just start typing)
30
#
31
32
Query Variables
xxxxxxxxxx
1
xxxxxxxxxx