Datatable to Datatable Relationships
Overview
Relationship Types
1. Sub-table Relationships (1:M)
Parent Datatable (e.g., Projects)
βββ _id: "proj_001"
βββ Name: "Website Redesign"
βββ Child Records (Sub-table)
βββ Task 1
β βββ _id: "task_001"
β βββ embeddingRowID: "proj_001" β Automatic link to parent
β βββ Title: "Design Homepage"
βββ Task 2
βββ _id: "task_002"
βββ embeddingRowID: "proj_001" β Automatic link to parent
βββ Title: "Develop Backend"2. Linked Table Field Relationships (N:M)
Practical Tutorial: Location Hierarchy
Step 1: Create the Parent Datatable (Locations)
Step 2: Create the Child Datatable (Items)
Step 3: Configure Sorting and Filtering
Step 4: Test the Relationship
Advanced Relationship Patterns
Multi-Level Hierarchies
Cross-Reference Relationships
Displaying Related Data
Working with Relationships via API
REST API Examples
Async API Examples
Best Practices
Related Documentation
Last updated