-
Notifications
You must be signed in to change notification settings - Fork 529
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix non-null-list-of-non-null error when root data is nil #1259
Merged
benwilson512
merged 12 commits into
absinthe-graphql:master
from
tamanugi:fix/non-null-lsit-of-non-null-false-positive
Aug 5, 2023
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
00b6c04
fix: non-null-list-of-non-null error when root data is nil
tamanugi f087c6f
lint: formatted
tamanugi 556a8cc
fix: testing for non-null-list-of-nullable
tamanugi f02ead8
revert unnecessary test changes.
benwilson512 d7c36df
typo fix
benwilson512 150eb3d
reset tests and focus on rewording in prep for clear test additions
benwilson512 e9c8556
continued wording tweaks
benwilson512 520eb56
incorporate new test behavior
benwilson512 a8b7c14
test name fix
benwilson512 feb74ea
show test that fails
benwilson512 be62a77
allow nullable elements of nullable lists
benwilson512 29db3e8
changelog entry
benwilson512 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -285,7 +285,21 @@ defmodule Absinthe.Phase.Document.Execution.Resolution do | |
|> propagate_null_trimming | ||
end | ||
|
||
defp maybe_add_non_null_error([], values, %Type.NonNull{of_type: %Type.List{}}) do | ||
defp maybe_add_non_null_error([], nil, %Type.NonNull{}) do | ||
["Cannot return null for non-nullable field"] | ||
end | ||
|
||
# Unwrap the non null so we can check again for the possible case of a non null | ||
# inside of a list. We want that clause to handle both | ||
# - `non_null(list_of(non_null(:thing)))` | ||
# - `list_of(non_null(:thing))` | ||
# Thus the single layer of unwrapping here. | ||
defp maybe_add_non_null_error([], values, %Type.NonNull{of_type: type}) do | ||
maybe_add_non_null_error([], values, type) | ||
end | ||
|
||
defp maybe_add_non_null_error([], values, %Type.List{of_type: %Type.NonNull{}}) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Before, this clause would happen for any |
||
when is_list(values) do | ||
values | ||
|> Enum.with_index() | ||
|> Enum.filter(&is_nil(elem(&1, 0))) | ||
|
@@ -294,10 +308,6 @@ defmodule Absinthe.Phase.Document.Execution.Resolution do | |
end) | ||
end | ||
|
||
defp maybe_add_non_null_error([], nil, %Type.NonNull{}) do | ||
["Cannot return null for non-nullable field"] | ||
end | ||
|
||
defp maybe_add_non_null_error(errors, _, _) do | ||
errors | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Moved this up as this the most fundamental check, best to do it first.