query
Spec
async query(
tnmInput: TynamoQueryInput<TSource>
): Promise<TynamoQueryOutput<TSource>>Input
export interface TynamoQueryInput<TSource> {
ExclusiveStartKey?: TSource;
ExpressionAttributeValues?: any;
// Derived from DynamoDB.
IndexName?: IndexName;
Select?: Select;
Limit?: PositiveIntegerObject;
ConsistentRead?: ConsistentRead;
ScanIndexForward?: BooleanObject;
ReturnConsumedCapacity?: ReturnConsumedCapacity;
ProjectionExpression?: ProjectionExpression;
FilterExpression?: ConditionExpression;
KeyConditionExpression?: KeyExpression;
ExpressionAttributeNames?: ExpressionAttributeNameMap;
}Output
Example
Last updated