Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- "query": {
- "bool": {
- "must": [
- {
- "match": {
- "body" : {
- "query" : "text les",
- "operator": "and"
- }
- }
- }
- ]
- ,
- "filter": [
- {
- "term": {
- "remote.keyword": "1@localhost"
- }
- }
- ]
- }
- }
- }
- ----------
- {
- "sort":[{"mam_id":{"order":"asc"}}],
- "size":50,
- "query":{
- "bool":{
- "must":{
- "simple_query_string":{
- "query":"text les",
- "fields":["body"],
- "default_operator":"and"
- }
- },
- "filter":[
- {
- "term":{
- "owner.keyword":"1@localhost"
- }
- }
- ]
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement