I have results in application insights that I want to query. My data in application insights are requests, with child dependencies. They have the same operation_Id.
I would like to list all requests. I can easily do this by running the query: request
But I also want to have the same corresponding dependencies, in the same line. Just as a list. How can I do this with the make_list()
operator?
Alternatively, I could accomplish this with a join. But I prefer to have the results in the same line, and the dependency names in a list as a column.