feat(small): add searchProperty option for resource to allow custom property search #1460
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Currently, the default record search only searches in the "titleProperty". If we want to search within multiple fields or transform the content of certain fields, it is not possible.
With this PR, a "searchProperty" option is introduced for the resource. This allows us to specify a different field for the search when searching on the resource. The content of this field can be different from the title and can include any text that the user wants to search within. For example, for the User resource, we may want to search within user name, email, phone number, nickname, etc. Additionally, in some cases, we may want to support searching by a shortened version of the original text in some fields. To achieve this, we simply need to put the desired text into the "searchProperty" field, and the search will be performed accordingly.