Skip to content

Commit 7c79a57

Browse files
committed
delete latin [netlify-build]
1 parent ba750b9 commit 7c79a57

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/unify/data-graph/index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -130,14 +130,14 @@ data_graph {
130130
}
131131

132132
# Define 1:many relationship between accounts and carts
133-
# e.g. an account can be associated with many carts
133+
# for example, an account can be associated with many carts
134134
relationship "user-carts" {
135135
name = "Shopping Carts"
136136
related_entity = "cart-entity"
137137
join_on = "account-entity.ID = cart-entity.ACCOUNT_ID"
138138

139139
# Define many:many relationship between carts and products
140-
# e.g. there can be multiple carts, and each cart can be associated with multiple products
140+
# for example, there can be multiple carts, and each cart can be associated with multiple products
141141
relationship "products" {
142142
name = "Purchased Products"
143143
related_entity = "product-entity"
@@ -161,7 +161,7 @@ data_graph {
161161
}
162162

163163
# Define 1:many relationship between households and subscriptions
164-
# e.g. a household can be associated with multiple subscriptions
164+
# for example, a household can be associated with multiple subscriptions
165165
relationship "user-subscriptions" {
166166
name = "Subscriptions"
167167
related_entity = "subscription-entity"
@@ -242,7 +242,7 @@ This is the first level of relationships and a unique type of relationship betwe
242242

243243
| Parameters | Definition |
244244
| ---------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
245-
| `relationship` | An immutable slug for the relationship, and will be treated as a delete if you make changes. The slug must be in all lowercase, and supports dashes or underscores (e.g. `user-account` or `user_account`) |
245+
| `relationship` | An immutable slug for the relationship, and will be treated as a delete if you make changes. The slug must be in all lowercase, and supports dashes or underscores (like `user-account` or `user_account`) |
246246
| `name` | A label displayed throughout your Segment space for Linked Events, Linked Audiences, etc. This name can be modified at any time |
247247
| `related_entity` | References your already defined entity |
248248

@@ -282,7 +282,7 @@ data_graph {
282282
name = "Premium Accounts"
283283
related_entity = "account-entity"
284284

285-
# Option 1: Join the profile entity with an identifier (e.g. email) on the related entity table
285+
# Option 1: Join the profile entity with an identifier (like email) on the related entity table
286286
external_id {
287287
type = "email"
288288
join_key = "EMAIL_ID"
@@ -303,7 +303,7 @@ For 1:many relationships, define the join on between the two entity tables using
303303

304304
| Parameters | Definition |
305305
| ---------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
306-
| `relationship` | An immutable slug for the relationship, and will be treated as a delete if you make changes. The slug must be in all lowercase, and supports dashes or underscores (e.g. `user-account` or `user_account`) |
306+
| `relationship` | An immutable slug for the relationship, and will be treated as a delete if you make changes. The slug must be in all lowercase, and supports dashes or underscores (like `user-account` or `user_account`) |
307307
| `name` | A label displayed throughout your Segment space for Linked Events, Linked Audiences, and so on. This name can be modified at any time |
308308
| `related_entity` | References your already defined entity |
309309
| `join_on` | Defines relationship between the two entity tables `[lefty entity slug].[column name] = [right entity slug].[column name]`. Note that since you’re referencing the entity slug for the join on, you do not need to define the full table reference |
@@ -348,7 +348,7 @@ For many:many relationships, define the join on between the two entity tables wi
348348

349349
| Parameters | Definition |
350350
| ---------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
351-
| `relationship` | An immutable slug for the relationship, and will be treated as a delete if you make changes. The slug must be in all lowercase, and supports dashes or underscores (e.g. `user-account` or `user_account`) |
351+
| `relationship` | An immutable slug for the relationship, and will be treated as a delete if you make changes. The slug must be in all lowercase, and supports dashes or underscores (like `user-account` or `user_account`) |
352352
| `name` | A label displayed throughout your Segment space for Linked Events, Linked Audiences, and so on. This name can be modified at any time |
353353
| `related_entity` | References your already defined entity |
354354

0 commit comments

Comments
 (0)