Skip to content

Commit 1485b79

Browse files
authored
Update spec links to the September 2025 version (#126)
1 parent 75406da commit 1485b79

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

test/syntax.vader

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# https://graphql.github.io/graphql-spec/June2018/#sec-Int
1+
# https://spec.graphql.org/September2025/#sec-Int
22
Given graphql (Integers):
33
0
44
-1
@@ -7,7 +7,7 @@ Execute (Integer assertions):
77
AssertEqual 'graphqlNumber', SyntaxOf('0')
88
AssertEqual 'graphqlNumber', SyntaxOf('-1')
99

10-
# https://graphql.github.io/graphql-spec/June2018/#sec-Float
10+
# https://spec.graphql.org/September2025/#sec-Float
1111
Given graphql (Floats):
1212
1.0
1313
-1.0
@@ -26,7 +26,7 @@ Execute (Float assertions):
2626
AssertEqual 'graphqlNumber', SyntaxOf('1e+10')
2727
AssertEqual 'graphqlNumber', SyntaxOf('1.0e10')
2828

29-
# https://graphql.github.io/graphql-spec/June2018/#sec-Boolean
29+
# https://spec.graphql.org/September2025/#sec-Boolean
3030
Given graphql (Booleans):
3131
true
3232
false
@@ -35,7 +35,7 @@ Execute (Boolean assertions):
3535
AssertEqual 'graphqlBoolean', SyntaxOf('true')
3636
AssertEqual 'graphqlBoolean', SyntaxOf('false')
3737

38-
# https://graphql.github.io/graphql-spec/June2018/#sec-String
38+
# https://spec.graphql.org/September2025/#sec-String
3939
Given graphql (Strings):
4040
""
4141
"Hello World"
@@ -72,7 +72,7 @@ Execute (Escape Sequence assertions):
7272
AssertEqual 'graphqlEscape', SyntaxAt(6, 7)
7373
AssertEqual 'graphqlEscape', SyntaxAt(7, 9)
7474

75-
# https://graphql.github.io/graphql-spec/June2018/#sec-Field-Arguments
75+
# https://spec.graphql.org/September2025/#sec-Field-Arguments
7676
Given graphql (Arguments):
7777
query queryName($site: Site = MOBILE) {
7878
user(id: 4) {
@@ -90,7 +90,7 @@ Execute (Argument assertions):
9090
AssertEqual 'graphqlName', SyntaxOf('size')
9191
AssertEqual 'graphqlNumber', SyntaxOf('100')
9292

93-
# https://graphql.github.io/graphql-spec/June2018/#sec-Type-Conditions
93+
# https://spec.graphql.org/September2025/#sec-Type-Conditions
9494
Given graphql (Type Conditions):
9595
query FragmentTyping {
9696
profiles(handles: ["zuck", "cocacola"]) {
@@ -112,7 +112,7 @@ Execute (Type Condition assertions):
112112
AssertEqual 'graphqlKeyword', SyntaxOf('on')
113113
AssertEqual 'graphqlType', SyntaxOf('User')
114114

115-
# https://graphql.github.io/graphql-spec/June2018/#sec-Inline-Fragments
115+
# https://spec.graphql.org/September2025/#sec-Inline-Fragments
116116
Given graphql (Inline Framents):
117117
query inlineFragmentTyping {
118118
profiles(handles: ["zuck", "cocacola"]) {
@@ -140,7 +140,7 @@ Execute (Schema assertions):
140140
AssertEqual 'graphqlName', SyntaxOf('query')
141141
AssertEqual 'graphqlType', SyntaxOf('QueryType')
142142

143-
# https://spec.graphql.org/October2021/#sec-Type-System.Directives
143+
# https://spec.graphql.org/September2025/#sec-Type-System.Directives
144144
Given graphql (Directives):
145145
directive @include(if: Boolean!)
146146
on FIELD
@@ -159,7 +159,7 @@ Execute (Directive assertions):
159159
AssertEqual 'graphqlDirectiveLocation', SyntaxOf('INLINE_FRAGMENT')
160160
AssertEqual 'graphqlOperator', SyntaxOf('|')
161161

162-
# https://spec.graphql.org/October2021/#sec-Objects
162+
# https://spec.graphql.org/September2025/#sec-Objects
163163
Given graphql (Objects):
164164
type Type implements Interface1 & Interface2 {
165165
name: Thing

0 commit comments

Comments
 (0)