You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you're using v2.1 or v2.0 you can add a description to each field by prepending it w/ # like so:
typeUser {
# First name of userfirst_name: String # Last name of userlast_name: String
}
In v2.2 (currently in beta), you need to use the new triple quotes (the # will not throw any errors, it's just considered a comment instead of a description)
typeUser {
"""First name of user"""first_name: String"""Last name of user"""last_name: String
}
Uh oh!
There was an error while loading. Please reload this page.
Is there an easy way to define "description" for each fields?
Maybe we can do it like
#description ...
or define them in separate config file will be a good solution?The text was updated successfully, but these errors were encountered: