Question
What are types of Record Relationships in Appian? Explain with examples?
A
Anonymous
December 25, 2025
57
Answer
Types of Record Relationships in Appian
1. One-to-Many (1:N)
Meaning:
One record in the parent Record Type is related to multiple records in the child Record Type.
Example:
- Customer → Orders
- One customer can place many orders.
Use case:
- Parent–child data modeling
- Display related lists (orders, transactions, comments)
2. Many-to-One (N:1)
Meaning:
Multiple records in one Record Type relate to a single record in another Record Type.
Example:
- Orders → Customer
- Many orders belong to one customer.
Use case:
- Reverse view of one-to-many
- Fetch parent data from child records
3. Many-to-Many (M:N)
Meaning:
Records in both Record Types can relate to multiple records in the other.
How it works in Appian:
- Implemented using a junction (mapping) table
- Appian does not directly support M:N without an intermediate Record Type
Example:
- Users ↔ Roles (via UserRole mapping table)
JuniorRecords
Loading comments...