I have a full-text search running fine using tsvector / tsquery:
to_tsvector('simple', text) @@ plainto_tsquery('simple', :query)
I am formatting the query to include partial matches:
{ query: `${searchTerm}:*` }
However, if I search for 'node' it does not match against text that contains 'node.js'.
How can I include partial matches that have a period or other similar stop character?