Hi All, I am working on Transaction Logs where I have a log field with the below data. Below is an example of the data I have: Transaction_Log : {"message":"Some valid text", "Some valid text", "Some valid text"} {"message":"Some valid text", "Some valid text", "Some valid text", "Some valid text"} {"message":"Some valid text", "Some valid text", "Some valid text"} {"message":"Printing data before Cart event-->(CartEvents__e:{CartId=A1234567, CartVolume=1034aef, CartCapacity=2000edc, CartExpiry=2nd Dec}), CartEvents__e:{CartId=A1234568, CartVolume=1045dkl, CartCapacity=2000lmn, CartExpiry=4rth Apr}), "levelNumber":"ER234", "logger":"ABCD"} {"message":"Some valid text", "Some valid text", "Some valid text", "Some valid text", "Some valid text"} In the above example, the CartEvents__e is a group of key value pairs where there are many fields apart from what I have given here. Also, there can multiple instances of CartEvents__e (two in my example data). There can be as many as 10 instances of CartEvents__e. How can I write my query in such a way that the output looks as below: (I have referred the documentation, but I am not able to figure this out correctly) CartId CartVolume CartCapacity A1234567 1034aef 2000edc A1234568 1045dkl 2000lmn I am not able to figure out how exactly this can be done. Any help is greatly appreciated.
... View more