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
I've read the documentation multiple times, and I'm not sure I found the answer I'm looking for...
Considering I have the following document var a = { title: "Oracle presentation", content: "This is a quick presentation of the database" }; var b = { title: "Oracle presentation", content: "This is a quick presentation of Oracle" }; var c = { title: "Database presentation", content: "This is a quick presentation of the database" };
and the default condiguration.
Consider that I search for "Oracle database".
with OR boolean : all documents will be retrieved
with AND boolean : none of them will be retrieved as there is no field containing both "Oracle" and "database".
So my question is :
is there a way to retrieve the very first document, as "Oracle" in is one field and "database" in another ? (and I want to retrieve documents only if they contains all terms)
Thanks for your help !
The text was updated successfully, but these errors were encountered:
Hello,
I've read the documentation multiple times, and I'm not sure I found the answer I'm looking for...
Considering I have the following document
var a = { title: "Oracle presentation", content: "This is a quick presentation of the database" };
var b = { title: "Oracle presentation", content: "This is a quick presentation of Oracle" };
var c = { title: "Database presentation", content: "This is a quick presentation of the database" };
and the default condiguration.
Consider that I search for "Oracle database".
So my question is :
is there a way to retrieve the very first document, as "Oracle" in is one field and "database" in another ? (and I want to retrieve documents only if they contains all terms)
Thanks for your help !
The text was updated successfully, but these errors were encountered: