RelationshipCallback
The RelationshipCallback
type describes a function that takes a Relationship
's Id
and a callback to loop over each local Row
within it.
(
relationshipId: Id,
forEachRow: (rowCallback: RowCallback) => void,
): void
Type | Description | |
---|---|---|
relationshipId | Id | The |
forEachRow | (rowCallback: RowCallback) => void | A function that will let you iterate over the local |
returns | void | This has no return value. |
A RelationshipCallback
is provided when using the forEachRelationship
method, so that you can do something based on every Relationship
in the Relationships
object. See that method for specific examples.
Since
v1.0.0