Arguments
[
[
"Beverages",
"Condiments",
"Vegetables",
"Dairy Products",
"Seafood"
]
]
Query
{
"join": {
"on": "Products",
"as": "p",
"by": "c == p.category"
},
"as": "c",
"from": "args[0]",
"select": {
"category": "c",
"productName": "p.productName"
}
}
Results
{}