What is the perfect and expected way the API expects it? I know there is documentation here. It has simple cases for example -
- "boating or sailing but not fishing" is boating|sailing -fishing
I want to know how do I specify "spider man and wonder woman but not music", there's no documentation for and. Additionally, multi-word queries are expected to be delimited by "+" in some places I've seen. I want to know exactly how the API expects this, because I have tried
- spider man|wonder woman -fishing
- spider+man|wonder+woman -fishing
Both work! Finally what if I have a multi-word "not" query, like "not blue whale"? I usually use python for this, but I think the answer should be independent of this.