You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.
Federated `ArgumentParser` is used to map entity representation to method arguments. When unwrapping nested fields, current logic was not accounting to nullability of the underlying field. If the underlying field returned non-null object, parser would fail trying to find the target property on `NonNull` GraphQL wrapper (which obviously doesn't exist).
Updated argument parser object handling logic to unwrap non-null types.
Note: this PR only addresses the issue with non-null types. Similar bug is present when handling keys with list representations.
Resolves: #6
Federated `ArgumentParser` is used to map entity representation to
method arguments. When unwrapping nested fields, current logic was not
accounting to nullability of the underlying field. If the underlying
field returned non-null object, parser would fail trying to find the
target property on `NonNull` GraphQL wrapper (which obviously doesn't
exist).
Updated argument parser object handling logic to unwrap non-null types.
Note: this PR only addresses the issue with non-null types. Similar bug
is present when handling keys with list representations.
Resolves:
#6
Reference resolver currently fails to map nested selection set representation.
Failing case (link)
The text was updated successfully, but these errors were encountered: