1- # https://graphql.github.io/graphql-spec/June2018 /#sec-Int
1+ # https://spec. graphql.org/September2025 /#sec-Int
22Given 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
1111Given 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
3030Given 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
3939Given 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
7676Given 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
9494Given 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
116116Given 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
144144Given 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
163163Given graphql (Objects):
164164 type Type implements Interface1 & Interface2 {
165165 name: Thing
0 commit comments