For a finder, do we need all the fields to be specified
Summary
For a finder, do we need all the fields to be specifiedContent
Consider an example where we have a finder PrimaryKey for accountContact
It has two columns AccountId and ContactId
Do we require all the 2 columns to be used with the finder or using one columns only with the finder is sufficient such as:
/accounts/{id}/child/AccountContact?PrimaryKey;AccountId=value
or
/accounts/{id}/child/AccountContact?PrimaryKey;ContactId=value
1