Skip to content

Latest commit

 

History

History
15 lines (14 loc) · 204 Bytes

mapping-document-relationships.md

File metadata and controls

15 lines (14 loc) · 204 Bytes

Mapping document relationships

PUT /department/_mapping
{
  "properties": {
    "join_field": { 
      "type": "join",
      "relations": {
        "department": "employee"
      }
    }
  }
}