...

Text file src/github.com/vektah/gqlparser/v2/formatter/testdata/baseline/FormatSchemaDocument/comments/description.graphql

Documentation: github.com/vektah/gqlparser/v2/formatter/testdata/baseline/FormatSchemaDocument/comments

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

View as plain text