...

Text file src/github.com/vektah/gqlparser/v2/formatter/testdata/source/schema/description.graphql

Documentation: github.com/vektah/gqlparser/v2/formatter/testdata/source/schema

     1# description comment
     2"""
     3Cat is best kawaii animal in the world.
     4meow!
     5""" # type comment
     6type Cat {
     7  # field description comment
     8  """
     9  Shiny brillian name.
    10  """
    11  # field comment
    12  name: String
    13  """
    14  Only "meow" is allowed.
    15  """
    16  speaks: String
    17}
    18# end of file comment
    19# end of file comment 2

View as plain text