Skip to main content

DeletedRecordResult

The result of one operation: the deletions found, and the cursor for the next operation.

type DeletedRecordResult {
currentCursor: String!
entities: DeletedRecordEntities!
fullReloadRequired: Boolean!
}

Fields

DeletedRecordResult.currentCursor ● String! non-null scalar

The cursor for the next operation. You pass it back in the sinceCursor argument.

Every operation returns this cursor, including an operation that returns fullReloadRequired: true. An operation that discards it must request a full reload.

DeletedRecordResult.entities ● DeletedRecordEntities! non-null object

The deletions found, one set for each record type.

DeletedRecordResult.fullReloadRequired ● Boolean! non-null scalar

true when the cursor in sinceCursor is no longer usable and the caller must reload everything. This happens in three cases: the operation gives no cursor, the cursor is not valid, or the cursor is more than 30 days old.

When the value is true, the caller must ignore entities and reload everything. The operation still returns currentCursor, and the caller must store it as usual.

Returned By

deletedRecords query