I have a requirement to send dynamic query parameters to REST web service GET method [as shown below].
host:port/app?field1=value1&&field2=value2&....
The consumer can send parameters up to fieldn and valuen. Each field maps to the value.
With this type of requirement, I can't code a finite set of QueryParams on the server side method.
I'm using python and fastapi
Thanks.