Skip to content

Commit

Permalink
Add relationship to backfill result (#301)
Browse files Browse the repository at this point in the history
Co-authored-by: Jesse Jia <[email protected]>
  • Loading branch information
zhixuanjia and Jesse Jia authored Oct 13, 2023
1 parent 87d9155 commit 0d23d2c
Showing 1 changed file with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,29 @@ record BackfillResult {
*/
aspects: array[string]
}]

/**
* List of relationships backfilled
*/
relationships: optional array[record BackfillResultRelationship {
/**
* Urn of the source entity
*/
source: Urn

/**
* Urn of the destination entity
*/
destination: Urn

/**
* Relationship between source and destination, e.g. downstream of.
*/
relationship: string

/**
* Remove option used to process the relationship
*/
removalOption: string
}]
}

0 comments on commit 0d23d2c

Please sign in to comment.