github.com/dgraph-io/dgraph@v1.2.8/graphql/schema/testdata/schemagen/input/comments-and-descriptions.graphql (about)

     1  # comment - see also e2e schema
     2  
     3  """
     4  Desc
     5  """
     6  interface I {
     7      """
     8      Desc
     9      """
    10      s: String!
    11  }
    12  
    13  """
    14  Desc
    15  """
    16  type T implements I {
    17      # # comment
    18      id: ID! # comment
    19  
    20      """
    21      Desc
    22      """
    23      i: Int
    24  }
    25  
    26  # comment
    27  
    28  """
    29  Desc
    30  """
    31  enum AnEnum {
    32      AVal
    33  
    34      """
    35      Desc
    36      """
    37      AnotherVal
    38  }