We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bb95cfe + 438b68c commit e55d36eCopy full SHA for e55d36e
src/unify/linked-profiles/linked-events.md
@@ -205,6 +205,17 @@ Linked Events uses the existing Audit Trail in your Segment workspace. To view y
205
206
You can define a schedule for refreshing the linked data from your data warehouse.
207
208
+#### How do I use entities in my data graph with Linked Events?
209
210
+To use entities with Linked Events, you'll need to set the `enrichment_enabled` flag to `true`. Here's the sample code:
211
212
+```python
213
+# Define an entity and indicate if the entity will be referenced for Linked Events (enrichment_enabled=true)
214
215
+entity "account-entity" {
216
+ name = "account"
217
+ table_ref = "CUST.ACCOUNT"
218
+ primary_key = "id"
219
+ enrichment_enabled = true
220
+}
221
+```
0 commit comments