-
Notifications
You must be signed in to change notification settings - Fork 0
Support Wildcard Operands in Queries. #7
Copy link
Copy link
Open
Description
Description
Add the ability to use wildcards (*) in query terms, so users can match multiple keywords without typing the full term.
Until now, queries only work with exact matches (after being passed through text processing layer). Wildcards would make searches more flexible and powerful. For example:
dev*-> matchesdeveloper,development,devops*ware-> matchessoftware,hardwaredata*base-> matchesdatabase
What to Add
- Wildcard (
*) support in query terms - Matching logic that expands
*to real indexed keywords - Works with other operators like AND, OR, and NOT
- Test cases for different wildcard positions (prefix, suffix, middle)
Example
Query:
(dev* AND software) OR NOT *base
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request