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
Proposal query={nested1: nested_one__id, nested2: nested_one__nested_two__id} or maybe a dotted version query={nested1: nested_one.id, nested2: nested_one.nested_two.id} and return
{
"nested1": 1
"nested2": 1
}
The text was updated successfully, but these errors were encountered:
Hello, i have a new proposal, allow to return a value of nested field in an alias
it`s a very good if you have a lot of nested fields and a client only need a field inside.
example:
Data:
Today:
query={nested1: nested_one{id, nested2: nested_two{id}}}
returnProposal
query={nested1: nested_one__id, nested2: nested_one__nested_two__id}
or maybe a dotted versionquery={nested1: nested_one.id, nested2: nested_one.nested_two.id}
and returnThe text was updated successfully, but these errors were encountered: