Skip to content

Commit ee90eb8

Browse files
committed
update graphql-js
1 parent d397d1a commit ee90eb8

File tree

3 files changed

+16
-11
lines changed

3 files changed

+16
-11
lines changed

package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"nodemon": "2.0.20",
3030
"prettier": "2.8.2",
3131
"spec-md": "3.1.0",
32-
"graphql": "^16.11.0"
32+
"graphql": "^17.0.0-alpha.8"
3333
},
3434
"prettier": {
3535
"proseWrap": "always",

spec/Appendix C -- Built-in Definitions.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ directive @deprecated(
3434
"""
3535
Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax, as specified by [CommonMark](https://commonmark.org/).
3636
"""
37-
reason: String = "No longer supported"
37+
reason: String! = "No longer supported"
3838
) on FIELD_DEFINITION | ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION | ENUM_VALUE
3939

4040
"""
@@ -239,10 +239,15 @@ enum __DirectiveLocation {
239239
INLINE_FRAGMENT
240240

241241
"""
242-
Location adjacent to a variable definition.
242+
Location adjacent to an operation variable definition.
243243
"""
244244
VARIABLE_DEFINITION
245245

246+
"""
247+
Location adjacent to a fragment variable definition.
248+
"""
249+
FRAGMENT_VARIABLE_DEFINITION
250+
246251
"""
247252
Location adjacent to a schema definition.
248253
"""

0 commit comments

Comments
 (0)