but i wanna search for two words that are not exactely next to each other. so like filter the job description for the keywords “cold calling” AND “hubspot”. how can I achieve that?
Hey Robin! Happy to add to this, but just like Juan pointed out, if you add a comma-separated list of values to search for that should already be an OR search. If you want to include all the words in a single query as AND, then you would write all of them within the same string like -> "cold calling hubspot"... This will find any matches that include all these keywords in no particular order. Hope that helps clarify a bit more.