-
Notifications
You must be signed in to change notification settings - Fork 87
Search Documentation #110
Copy link
Copy link
Open
Description
The documentation for the search function leads one to believe that
var qryObj = {
field1 : "term"
};will search for documents that have the value "term" in the field "field1"
However, this is untrue, it should be
var qryObj = {
"query" : {
"term" : { "field1" : "term" }
}
};Please update the documentation so that others don't run into simliar problems as myself.
Also, better/more documentation in general would be great.
Thanks
-Epicblood
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels