@@ -283,7 +283,7 @@ class AbstractGraphQLHttpServletSpec extends Specification {
283
283
getBatchedResponseContent()[1 ]. data. echo == " test"
284
284
}
285
285
286
-
286
+ @Ignore
287
287
def " deferred query over HTTP GET" () {
288
288
setup :
289
289
request. addParameter(' query' , ' query { echo(arg:"test") @defer }' )
@@ -368,6 +368,7 @@ class AbstractGraphQLHttpServletSpec extends Specification {
368
368
getBatchedResponseContent()[1 ]. errors. size() == 1
369
369
}
370
370
371
+ @Ignore
371
372
def " subscription query over HTTP GET with variables as string returns data" () {
372
373
setup :
373
374
request. addParameter(' query' , ' subscription Subscription($arg: String!) { echo(arg: $arg) }' )
@@ -1034,6 +1035,7 @@ class AbstractGraphQLHttpServletSpec extends Specification {
1034
1035
getBatchedResponseContent()[1 ]. data. echo == " test"
1035
1036
}
1036
1037
1038
+ @Ignore
1037
1039
def " subscription query over HTTP POST with variables as string returns data" () {
1038
1040
setup :
1039
1041
request. setContent(' {"query": "subscription Subscription($arg: String!) { echo(arg: $arg) }", "operationName": "Subscription", "variables": {"arg": "test"}}' . bytes)
@@ -1052,6 +1054,7 @@ class AbstractGraphQLHttpServletSpec extends Specification {
1052
1054
getSubscriptionResponseContent()[1 ]. data. echo == " Second\n\n test"
1053
1055
}
1054
1056
1057
+ @Ignore
1055
1058
def " defer query over HTTP POST" () {
1056
1059
setup :
1057
1060
request. setContent(' {"query": "subscription Subscription($arg: String!) { echo(arg: $arg) }", "operationName": "Subscription", "variables": {"arg": "test"}}' . bytes)
@@ -1070,6 +1073,7 @@ class AbstractGraphQLHttpServletSpec extends Specification {
1070
1073
getSubscriptionResponseContent()[1 ]. data. echo == " Second\n\n test"
1071
1074
}
1072
1075
1076
+ @Ignore
1073
1077
def " deferred query that takes longer than initial results, should still be sent second" () {
1074
1078
setup :
1075
1079
servlet = TestUtils . createDefaultServlet({ env ->
0 commit comments