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
If a project type contains a non alphanumeric character then the search string should be quoted in the ProjectTypes component. We have two project types with overlapping tokenized slugs -- config-management and config-and-backup. After tokenization the names are [config, management] and [config, and, backup]. Without quotes both search result in the same list since the config term is present in both.
I'm not completely sure which normalization method is being applied to the search but project_type_slug:config-management and project_type_slug:"config-management" have differing results with the latter being correct. IIRC, when you quote a multi-word term it is interpreted as contains each of the words in order. Without the quotes it seems to be interpreted as contains any of the words.
The text was updated successfully, but these errors were encountered:
If a project type contains a non alphanumeric character then the search string should be quoted in the ProjectTypes component. We have two project types with overlapping tokenized slugs --
config-management
andconfig-and-backup
. After tokenization the names are[config, management]
and[config, and, backup]
. Without quotes both search result in the same list since theconfig
term is present in both.I'm not completely sure which normalization method is being applied to the search but
project_type_slug:config-management
andproject_type_slug:"config-management"
have differing results with the latter being correct. IIRC, when you quote a multi-word term it is interpreted as contains each of the words in order. Without the quotes it seems to be interpreted as contains any of the words.The text was updated successfully, but these errors were encountered: