Documenting GraphQL short-hand model

74 Views Asked by At

How does one document the model, using GraphQL shorthand notation?

type User { name: String }

Say I want to add a description for the type/attribute above.

1

There are 1 best solutions below

0
On BEST ANSWER

Descriptions come in the form of comments:

# Someone who uses something
type User {
  # How we refer to the user
  name: String
}

Those should be added as descriptions to the schema generated from this notation.