Skip to content

Commit 556a8cc

Browse files
committed
fix: testing for non-null-list-of-nullable
1 parent f087c6f commit 556a8cc

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

test/absinthe/phase/execution/non_null_test.exs

+8-4
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,12 @@ defmodule Absinthe.Phase.Document.Execution.NonNullTest do
8686
resolve &things_resolver/3
8787
end
8888

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
9090
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
9195
arg :make_child_null, :boolean
9296
resolve &things_resolver/3
9397
end
@@ -273,10 +277,10 @@ defmodule Absinthe.Phase.Document.Execution.NonNullTest do
273277
assert {:ok, %{data: data, errors: errors}} == Absinthe.run(doc, Schema)
274278
end
275279

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
277281
doc = """
278282
{
279-
nonNullListOfNonNull(makeNull: true) { __typename }
283+
nonNullListOfNullable(makeNull: true) { __typename }
280284
}
281285
"""
282286

@@ -286,7 +290,7 @@ defmodule Absinthe.Phase.Document.Execution.NonNullTest do
286290
%{
287291
locations: [%{column: 3, line: 2}],
288292
message: "Cannot return null for non-nullable field",
289-
path: ["nonNullListOfNonNull"]
293+
path: ["nonNullListOfNullable"]
290294
}
291295
]
292296

0 commit comments

Comments
 (0)