build notes
curl -XPOST http://localhost:9200/parent_child --data-binary @mapping.json
curl -XPOST http://localhost:9200/_bulk --data-binary @bulk.json
curl -XPOST http://localhost:9200/parent_child/profile/_search -d'{"query":{"has_child": {"query": {"term": {"tag": 110475388978628}}, "type": "segment"}}}'
curl -XPOST http://localhost:9200/parent_child/profile/_count -d'{"query":{"has_child": {"query": {"term": {"tag": 110475388978628}}, "type": "segment"}}}'
bulk.json
{ "index" : { "_index" : "parent_child", "_type" : "profile", "_id" : "f92c0f92-354d-11e1-8104-12313806f111" } }
{"gender": "male", "profile_id": "f92c0f92-354d-11e1-8104-12313806f111", "property_id": 9}
{ "index" : { "_index" : "parent_child", "_type" : "segment",  "parent" : "f92c0f92-354d-11e1-8104-12313806f111" } }
{"category": [0, 7], "tag": 183824211661952}
{ "index" : { "_index" : "parent_child", "_type" : "segment",  "parent" : "f92c0f92-354d-11e1-8104-12313806f111" } }
{"category": [0, 3, 29, 327], "tag": 110475388978628}
{ "index" : { "_index" : "parent_child", "_type" : "segment",  "parent" : "f92c0f92-354d-11e1-8104-12313806f111" } }
{"category": [0, 3, 29, 327], "tag": 28627688223}
{ "index" : { "_index" : "parent_child", "_type" : "segment",  "parent" : "f92c0f92-354d-11e1-8104-12313806f111" } }
{"category": [0, 7], "tag": 8062627951}
mapping.json
{
    "settings": {
        "number_of_shards": 1,
            "number_of_replicas": 1
    },
        "mappings": {
            "profile": {
                "properties": {
                    "property_id":{
                        "type":"long"
This file has been truncated. show original