File: description.graphql

package info (click to toggle)
golang-github-vektah-gqlparser 2.5.31-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,120 kB
  • sloc: javascript: 204; sh: 46; makefile: 11
file content (19 lines) | stat: -rw-r--r-- 303 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# description comment
"""
Cat is best kawaii animal in the world.
meow!
""" # type comment
type Cat {
  # field description comment
  """
  Shiny brillian name.
  """
  # field comment
  name: String
  """
  Only "meow" is allowed.
  """
  speaks: String
}
# end of file comment
# end of file comment 2