Skip to content

Latest commit

 

History

History
21 lines (20 loc) · 432 Bytes

AppSideJoins.md

File metadata and controls

21 lines (20 loc) · 432 Bytes

App Side Joins

  • 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"
}