1

Is there String query search grammar as matching occurrences of 'private' and 'doe' and excluding the phrase 'Jane Doe' ?

const searchString = 'private AND doe NOT_IN "Jane Doe" ';
1
  • please explain the version you are using as well as API you are using for searching Commented Mar 25, 2020 at 16:03

1 Answer 1

1

It seems below works!

const searchQuery = 'private AND doe - "Jane Doe"';
Sign up to request clarification or add additional context in comments.

1 Comment

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.