Advertisement
Guest User

Untitled

a guest
Nov 24th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.83 KB | None | 0 0
  1. {
  2.   "query": {
  3.     "bool": {
  4.       "must": [
  5.         {
  6.           "has_parent": {
  7.             "parent_type": "doctor",
  8.             "query": {
  9.               "bool": {
  10.                 "must": [
  11.                   {
  12.                     "term": {
  13.                       "fullName.keyword": "Lily Ariason"
  14.                     }
  15.                   }
  16.                 ]
  17.               }
  18.             }
  19.           }
  20.         },
  21.         {
  22.           "has_child": {
  23.             "type": "appointment",
  24.             "query": {
  25.               "bool": {
  26.                 "must": [
  27.                   {
  28.                     "match_all": {}
  29.                   }
  30.                 ]
  31.               }
  32.             }
  33.           }
  34.         },
  35.         {
  36.           "term": {
  37.             "_type": "calendar_day"
  38.           }
  39.         }
  40.       ]
  41.     }
  42.   }
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement