This is definitely basic…
I have a table that has several fields that are table references. In my app there are times when I'll want to query that table with one or more of those table reference fields as a filter. Is it best practice to setup a single endpoint that has all possible input parameters, and setup the query logic to ignore empty parameters?
When I tried creating a new endpoint with just one of the input parameters, I got an error that said the name was already used (I copied the naming convention 'table_name/{inputfield_id}'). Not seeing one in my list of existing endpoints. So this leads to my best practice question.
TIA