We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f2f338 commit b63cd39Copy full SHA for b63cd39
src/dynamo/expression/index.ts
@@ -2,4 +2,5 @@ export * from './logical-operator/and.function'
2
export * from './logical-operator/or.function'
3
export * from './logical-operator/not.function'
4
export * from './logical-operator/attribute.function'
5
+export * from './logical-operator/update.function'
6
export * from './type/condition-operator.type'
src/dynamo/request/update/update.request.ts
@@ -22,6 +22,7 @@ import { BaseRequest } from '../base.request'
22
23
export type Bla = { [key in UpdateActionKeyword]: Expression[] }
24
25
+// TODO add if no operations are defined, don't execute
26
export class UpdateRequest<T> extends BaseRequest<T, any> {
27
constructor(
28
dynamoRx: DynamoRx,
0 commit comments