- Docs stored, indexed, and searched individually - application joins the docs
- Fetch the order by id
POST http://localhost:9200/orders/orders/1
{
"id": "1",
"placedOn": "2016-10-17T13:03:30.830Z",
"customerId": "123"
}
- Fetch the customer by customer id from the order document
POST http://localhost:9200/customers/customers/123
{
"id": "123",
"firstName": "John",
"lastName": "Smith"
}