| id | PendingMutation |
|---|---|
| title | PendingMutation |
Defined in: packages/db/src/types.ts:89
Represents a pending mutation within a transaction Contains information about the original and modified data, as well as metadata
T extends object = Record<string, unknown>
TOperation extends OperationType = OperationType
TCollection extends Collection<T, any, any, any, any> = Collection<T, any, any, any, any>
changes: ResolveTransactionChanges<T, TOperation>;Defined in: packages/db/src/types.ts:106
collection: TCollection;Defined in: packages/db/src/types.ts:117
createdAt: Date;Defined in: packages/db/src/types.ts:115
globalKey: string;Defined in: packages/db/src/types.ts:107
key: any;Defined in: packages/db/src/types.ts:109
metadata: unknown;Defined in: packages/db/src/types.ts:111
modified: T;Defined in: packages/db/src/types.ts:104
mutationId: string;Defined in: packages/db/src/types.ts:100
optimistic: boolean;Defined in: packages/db/src/types.ts:114
Whether this mutation should be applied optimistically (defaults to true)
original: TOperation extends "insert" ? object : T;Defined in: packages/db/src/types.ts:102
syncMetadata: Record<string, unknown>;Defined in: packages/db/src/types.ts:112
type: TOperation;Defined in: packages/db/src/types.ts:110
updatedAt: Date;Defined in: packages/db/src/types.ts:116