Party full text search #181
Merged
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.
What
This PR is another clone of PR 165 (which was done for plant concepts), now introducing full text search for parties via the collection GET endpoint.
This PR also sneaks in the addition of an
obs_countcolumn to returned Party records.Why
So that API clients can request only parties whose last name, first name (with lower weight), and/or organization name match a desired search term.
How
partytable to store a "document" (tsvectortype) containing the text substrate for searchsurname,givennameandorganizationnamecolumnssearchparameterMore details
Repeating the same details from the earlier Plant Concept FTS PR description:
Demo
Search for a word (here just returning the count of matching records)
$ http GET 'http://127.0.0.1/parties?search=mary&count'{ "count": 19 }Search for an organization
{ "given_name": "Mark", "surname": "Anderson", "organization_name": "NCEAS" }Show that matches on last name (
surname) score higher than on first name (given_name)