JoinInput
Input type for specifying join relationships between tables when updating data sources in a domain.The left table in the join relationship. See TableInput.
The right table in the join relationship. See TableInput.
The type of relationship between the tables. See RelationshipType.
List of join conditions that define how the tables are connected. See JoinConditionInput.
JoinConditionInput
Defines a single join condition between two table columns.The name of the column in the left table to join on.
The name of the column in the right table to join on.
RelationshipType
TheRelationshipType enum defines the cardinality between joined tables and can be set to one of the following values:
| Relationship Type | Description |
|---|---|
RELATIONSHIP_TYPE_UNKNOWN | Relationship type is not specified or unclear. |
ONE_TO_ONE | Each record in the left table matches exactly one record in the right table. |
ONE_TO_MANY | Each record in the left table can match multiple records in the right table. |
MANY_TO_ONE | Multiple records in the left table can match one record in the right table. |
MANY_TO_MANY | Multiple records in the left table can match multiple records in the right table. |