-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Schema lang descriptions #464
Conversation
enum __TypeKind { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This newline is slightly odd, if I was writing this be hand I'd omit the initial newline.
This is awesome! It will make writing schemas with the type language way better, descriptions were one of the biggest missing pieces. |
ecdd26a
to
654c48a
Compare
OMG stacked diffs work in github now. |
654c48a
to
32c66a5
Compare
@dschafer - I updated to newline before comment except when it's the first comment in a block/list |
32c66a5
to
449992b
Compare
Note: I need to add this to extendSchema as well. |
This adds descriptions to the `buildASTSchema` (string->schema) and `schemaPrinter` (schema->string) via walking the previous full-line contiguous comment block. This is dependent on #463.
449992b
to
208a11f
Compare
Adds descriptions to the schema language via docblocks
This adds descriptions to the
buildASTSchema
(string->schema) andschemaPrinter
(schema->string) via walking the previous full-line contiguous comment block. This is dependent on #463.