You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Searching for model names should exclude underscores and other word break characters, and be able to find tokens in any order.
Who will this benefit?
We (like probably everyone else) use snake_case in our model names. When looking for a model in dbt Docs, I try to search by a couple of keywords (e.g. "class teachers") if I know a model exists but don't remember its exact name. This doesn't find a model called teachers__class_counts, because the search appears to require a perfect substring match, such as _class_c.
Even if I remember the model name, having to remember where the underscores go is a pain - is it user_meta_data or user_metadata?
Describe alternatives you've considered
Having a better memory
Searching for a single word using the dbt search bar, then searching for a second word using Ctrl-F, e.g.
Additional context
If separator characters are included in the search then they shouldn't be stripped. Perfect substring matches should probably still win, but I haven't put a lot of thought into those edge cases.
Are you interested in contributing this feature?
My JS is pretty much limited to hello world, but if you point me in the right direction I'm happy to lose an hour or two trying before giving up.
The text was updated successfully, but these errors were encountered:
This issue has been marked as Stale because it has been open for 180 days with no activity. If you would like the issue to remain open, please remove the stale label or comment on the issue, or it will be closed in 7 days.
Describe the feature
Searching for model names should exclude underscores and other word break characters, and be able to find tokens in any order.
Who will this benefit?
We (like probably everyone else) use snake_case in our model names. When looking for a model in dbt Docs, I try to search by a couple of keywords (e.g. "class teachers") if I know a model exists but don't remember its exact name. This doesn't find a model called
teachers__class_counts
, because the search appears to require a perfect substring match, such as_class_c
.Even if I remember the model name, having to remember where the underscores go is a pain - is it
user_meta_data
oruser_metadata
?Describe alternatives you've considered
Additional context
If separator characters are included in the search then they shouldn't be stripped. Perfect substring matches should probably still win, but I haven't put a lot of thought into those edge cases.
Are you interested in contributing this feature?
My JS is pretty much limited to hello world, but if you point me in the right direction I'm happy to lose an hour or two trying before giving up.
The text was updated successfully, but these errors were encountered: