Querying multiple tables with joins
From DreamFactory
- Tutorial
Query a SQL database for records in different tables joined by key. Try these examples in the 'API Docs' tab of the DreamFactory Admin Console or from the command line with cURL.
Note that passing * as the 'related' parameter will return all records by foreign key.
- API Endpoint
GET https://{url}/api/v2/{api_name}/_table/{table_name}?related={foreign_key_field}
- API Docs Screenshot
- Example - Fetch contact and contact_info_by_contact_id records in one API call. Each contact has zero or more contact_info_by_contact_id records.
- Table name: contact
- Related parameter in API call:
related=contact_info_by_contact_id
- Request URL:
https://foo.com/api/v2/db/_table/contact?related=contact_info_by_contact_id
- Example - Fetch contact and all related records by foreign key in one API call.
- Table name: contact
- Filter parameter in API call:
related=*
- Request URL:
https://foo.com/api/v2/db/_table/contact?related=*