I am sorry if the subject is kind of confusing, but it’s pretty simple: when I make a query I am getting the results in the format of:
[
{
"registrations": {
"product": "Note 1",
"user_id": "users::34"
}
},
{
"registrations": {
"product": "Note 2",
"user_id": "users::34"
}
},
{
"registrations": {
"product": "Note 3",
"user_id": "users::34"
}
}
]
However, I want the result to be in the format of:
[
{
"product": "Note 1",
"user_id": "users::34"
},
{
"product": "Note 2",
"user_id": "users::34"
},
{
"product": "Note 3",
"user_id": "users::34"
}
]
How can I change the query to make this possible?
Details:
One (of the many) source documents has this signature:
{
"id": "properties::1234",
"name": "My house",
"icon": "house.png",
"locations": [
{
"name": "My room",
"icon": "bedroom.png",
"registrations": [
{
"product": "samsung note 8",
"user_id": "users::33"
},
{
"product": "samsung note 9",
"user_id": "users::33"
}
]
}
],
"channels": ["properties::1234"],
"addProducts": ["users::33"],
"editLocations": ["users::33"],
"addUsers": ["users::33"],
"admin": ["users::33"]
}
And I am using this query to get to the result I want to “flatten”:
SELECT registrations FROM properties
UNNEST locations
UNNEST locations.registrations
Any help would be appreciated. Thanks!