Describes updates that should be applied to a Pod (without applying them yet)

Use executeUpdate to actually perform the operation.

interface UpdateOperation {
    deletions: default<SubjectType, PredicateType, ObjectType, GraphType>[];
    filesToCreate: FileToCreate[];
    insertions: default<SubjectType, PredicateType, ObjectType, GraphType>[];
}

Properties

deletions: default<SubjectType, PredicateType, ObjectType, GraphType>[]

RDF statements that should be deleted

filesToCreate: FileToCreate[]

Empty files that should be created

insertions: default<SubjectType, PredicateType, ObjectType, GraphType>[]

RDF statements that should be inserted