You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(projection-expression): add support for projection expression
- add projection expression support for bacth-get-single-table.request and read-many.request
- also fix issue where attribute name was not mapped to correct dynamoDB attribute name if metadata was specified
Copy file name to clipboardExpand all lines: src/dynamo/request/query/query.response.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ import * as DynamoDB from 'aws-sdk/clients/dynamodb'
9
9
*/
10
10
exportinterfaceQueryResponse<T>{
11
11
/**
12
-
* An array of item attributes that match the query criteria. Each element in this array consists of an attribute name and the value for that attribute, as specified by ProjectionExpression.
12
+
* An array of item attributes that match the query criteria. Each element in this array consists of an attribute name and the value for that attribute (subset of attributes if ProjectionExpression was defined).
Copy file name to clipboardExpand all lines: src/dynamo/request/scan/scan.response.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ import * as DynamoDB from 'aws-sdk/clients/dynamodb'
5
5
6
6
exportinterfaceScanResponse<T>{
7
7
/**
8
-
* An array of item attributes that match the scan criteria. Each element in this array consists of an attribute name and the value for that attribute, as specified by ProjectionExpression.
8
+
* An array of item attributes that match the scan criteria. Each element in this array consists of an attribute name and the value for that attribute (subset of attributes if ProjectionExpression was defined).
0 commit comments