Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2020
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if (typeof req.query.q != "undefined" && req.query.q.length > 2) {
  2.     if (typeof req.query.filterByIndex != "undefined" && req.query.filterByIndex.length > 0) {
  3.         var filter = {
  4.             match: {}
  5.         };
  6.         filter.match[req.query.filterByIndex] = {
  7.             "query": "*" + req.query.q.toLowerCase() + "*",
  8.             "type": "phrase"
  9.         }
  10.         filters.push(filter);
  11.     } else {
  12.         filters.push({"bool": { "must": { "wildcard": { "name": "*" + req.query.q.toLowerCase() + "*" } } } });
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement