I am working on microservice and I want to aggregate data from multiple Get calls with different Query parameters. e.g
- /api/Users/Clients?clientId=489842&&isClient=true
- /api/Bookings/Booking?clientId=489842&FromDate=20201106&ToDate=20210106
- /api/Accounts/Salary?clientId=489842&month=03&year=2020
what would be the solution for doing this? the only solution I found is when all the APIs expecting the single/same query parameter.