@@ -86,8 +86,12 @@ defmodule Absinthe.Phase.Document.Execution.NonNullTest do
86
86
resolve & things_resolver / 3
87
87
end
88
88
89
- field :non_null_list_of_non_null , non_null ( list_of ( non_null ( :thing ) ) ) do
89
+ field :non_null_list_of_nullable , non_null ( list_of ( :thing ) ) do
90
90
arg :make_null , :boolean
91
+ resolve & things_resolver / 3
92
+ end
93
+
94
+ field :non_null_list_of_non_null , non_null ( list_of ( non_null ( :thing ) ) ) do
91
95
arg :make_child_null , :boolean
92
96
resolve & things_resolver / 3
93
97
end
@@ -273,10 +277,10 @@ defmodule Absinthe.Phase.Document.Execution.NonNullTest do
273
277
assert { :ok , % { data: data , errors: errors } } == Absinthe . run ( doc , Schema )
274
278
end
275
279
276
- test "list of non null things works when root is null" do
280
+ test "list of non null works when root is null" do
277
281
doc = """
278
282
{
279
- nonNullListOfNonNull (makeNull: true) { __typename }
283
+ nonNullListOfNullable (makeNull: true) { __typename }
280
284
}
281
285
"""
282
286
@@ -286,7 +290,7 @@ defmodule Absinthe.Phase.Document.Execution.NonNullTest do
286
290
% {
287
291
locations: [ % { column: 3 , line: 2 } ] ,
288
292
message: "Cannot return null for non-nullable field" ,
289
- path: [ "nonNullListOfNonNull " ]
293
+ path: [ "nonNullListOfNullable " ]
290
294
}
291
295
]
292
296
0 commit comments