I’m using UQL with infinity datasource to create a 4 column table -
“ID”, “Submitter”, “Date”, “Server”
From “values”, I get the columns “ID”, “Submitter”, “Date” with query:
parse-json
| project "entries"
| project "values.ID","values.Date","values.Status"
Seperately, from “_embedded”, I can get the columns “Server” with query:
parse-json
| project "entries"
| project "_embedded.assoc-CHG:Association"
But, I can’t join them altogether, in one 4 column table.
How do I update my UQL query to achieve this?
My JSON is as follow:
{
"entries": [
{
"values": {
"ID": "BRQ00077077",
"Submitter": "John Doe,
"Date": "2024-05-15"
},
"_embedded": {
"assoc-CHG:Association": [
{
"values": {
"Associations ID": "CHA000005234234",
"Server": "lrr2jbs8742.example.int"
},
},
}
]
}
}
],