[FEATURE]: Implement fuzzy and substring search for members #162

Closed
opened 2025-09-17 14:53:36 +02:00 by carla · 0 comments
Owner

Description

As a user I can search for substrings in the search input field in the members list and I get results for memebers that contain the substring and contain them approximately (fuzzy search)

Acceptance criteria

  • I can enter a substring search term and get correct results

Notes

Could be implemented by adding Trigram:

search_vector @@ plainto_tsquery('german', 'lauf')

OR name ILIKE '%lauf%'
OR name % 'lauf'

links for further reading:
Postgres docu functions
Postgres docu Trigram

## Description As a user I can search for substrings in the search input field in the members list and I get results for memebers that contain the substring and contain them approximately (fuzzy search) ## Acceptance criteria - [x] I can enter a substring search term and get correct results ## Notes Could be implemented by adding Trigram: ``` search_vector @@ plainto_tsquery('german', 'lauf') OR name ILIKE '%lauf%' OR name % 'lauf' ``` links for further reading: [Postgres docu functions](https://www.postgresql.org/docs/17/functions-textsearch.html) [Postgres docu Trigram](https://www.postgresql.org/docs/17/pgtrgm.html)
carla added the
medium priority
M
labels 2025-09-17 14:53:36 +02:00
simon added this to the I can search through the list of members -fulltext milestone 2025-09-26 15:14:41 +02:00
carla self-assigned this 2025-10-01 14:22:20 +02:00
carla changed reference from main to feature/162_fuzzy_search 2025-10-30 17:17:42 +01:00
carla closed this issue 2025-11-12 14:14:58 +01:00
Sign in to join this conversation.
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: local-it/mitgliederverwaltung#162
No description provided.