You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/unify/data-graph/data-graph.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -150,7 +150,7 @@ Now define your relationships across your entities. The Data Graph supports thre
150
150
151
151
All relationship types require you to define the relationship slug, label, and related entity. Each type of relationship has unique join on conditions.
|`table_ref`| Defines the fully qualified table reference to the join table.: `[database name].[schema name].[table name]` Segment flexibly supports tables, views and materialized views |
265
+
|`table_ref`| Defines the fully qualified table reference to the join table: `[database name].[schema name].[table name]` Segment flexibly supports tables, views and materialized views |
266
266
|`primary_key`| The unique identifier for the given table. Must be a column with unique values per row |
267
-
|`left_join_on`| Define the relationship between the left entity table and the junction table: `[left entity slug].[column name] = [junction table column name]`. `[schema].[table]` is implied within the junction table column name, so you do not need to define it again |
268
-
|`right_join_on`| Define the relationship between the junction table and the right entity table: `[junction table column name] = [right entity slug].[column name]`.`[schema].[table]` is implied within the junction table column name, so you do not need to define it again |
267
+
|`left_join_on`| Define the relationship between the left entity table and the junction table: `[left entity slug].[column name] = [junction table column name]`. Note that schema and table are implied within the junction table column name, so you do not need to define it again |
268
+
|`right_join_on`| Define the relationship between the junction table and the right entity table: `[junction table column name] = [right entity slug].[column name]`. Note that schema and table are implied within the junction table column name, so you do not need to define it again |
0 commit comments