-
Notifications
You must be signed in to change notification settings - Fork 23
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
[v2] Adding a vars
map to a groupBy
query changes the shape of the results
#500
Comments
Note, this may be related to #499 |
Another oddity about this query is that if you add additional items to the
|
@zonotope @Jackamus29 not to tack on here, but I'm also seeing an odd Transaction 1 [{
"_id": "_predicate",
"type": "string",
"name": "_user/awards",
"multi": true
}] Transaction 2 [{
"_id": "_user",
"username": "jack",
"awards": ["HS Degree", "College Degree"]
},
{
"_id": "_user",
"username": "kate",
"awards": ["HS Degree", "College Degree", "Grad School Degree"]
}] Query without
Query with
|
Merged
That was marked as done in #514 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tweaking a
groupBy
query to include avars
map changes the shape of the results from an object with thegroupBy
values as keys to an array of two-tuples where the first element is thegroupBy
value.Without
vars
map=>
With
vars
map=>
The text was updated successfully, but these errors were encountered: