RelationshipPersistenceResult

data class RelationshipPersistenceResult(val persistedCount: Int, val failedCount: Int, val errors: List<String> = emptyList(), val persistedRelationshipRefs: Set<String> = emptySet(), val failedRelationshipRefs: Set<String> = emptySet())

Result of persisting projected relationships.

Constructors

Link copied to clipboard
constructor(persistedCount: Int, failedCount: Int, errors: List<String> = emptyList(), persistedRelationshipRefs: Set<String> = emptySet(), failedRelationshipRefs: Set<String> = emptySet())

Properties

Link copied to clipboard
Link copied to clipboard

List of error messages for failed persistences

Link copied to clipboard

Number of relationships that failed to persist

Link copied to clipboard

Stable edge refs that failed to persist, when the persister can report them

Link copied to clipboard

Number of relationships successfully persisted

Link copied to clipboard

Stable edge refs that were persisted, when the persister can report them

Link copied to clipboard