Hi @wasiq.res , how are you?

I think I understand what you are trying to do.

So you have orders and within those orders you want to show data from the admin and client, yes?

If that is correct, you can either add the dataTypes to the orders or make a new dataType that houses that information that can then be searched.

Example #1 -
DataType = orders
dateField - clientData = client dataType
dataField - adminData = admin dataType

This way you can pull the data from both within the order

Example #2 -
dateType = order (that has an attached client and admin or a way to identity client and admin)
dateType = ordersData (this would then have all the data from client and admin within it)
Then what you can do is search for an orderData that order, client and admin = parents order, client and admin

I recommend example #1 as it is much easier to setup.

I hope that all makes sense