...

Text file src/github.com/vektah/gqlparser/v2/formatter/testdata/baseline/FormatSchema/spaceIndent/schema.graphql

Documentation: github.com/vektah/gqlparser/v2/formatter/testdata/baseline/FormatSchema/spaceIndent

     1schema {
     2 query: TopQuery
     3 mutation: TopMutation
     4 subscription: TopSubscription
     5}
     6type TopMutation {
     7 noop: Boolean
     8 noop2(
     9  """
    10  noop2 foo bar
    11  """
    12  arg: String
    13 ): Boolean
    14 noop3(
    15  """
    16  noop3 foo bar
    17  """
    18  arg: String
    19 ): Boolean
    20}
    21type TopQuery {
    22 noop: Boolean
    23 noop2(
    24  """
    25  noop2 foo bar
    26  """
    27  arg: String
    28 ): Boolean
    29 noop3(
    30  """
    31  noop3 foo bar
    32  """
    33  arg: String
    34 ): Boolean
    35}
    36type TopSubscription {
    37 noop: Boolean
    38 noop2(
    39  """
    40  noop2 foo bar
    41  """
    42  arg: String
    43 ): Boolean
    44 noop3(
    45  """
    46  noop3 foo bar
    47  """
    48  arg1: String
    49
    50  """
    51  noop3 foo bar
    52  """
    53  arg2: String
    54 ): Boolean
    55}

View as plain text