AWS - DynamoDB
Given a DynamoDB table with CustomerId as partition key and InvoiceDate as sort key, what will the following query return?
Query: KeyConditionExpression = "CustomerId = :cid AND InvoiceDate > :date"
Assuming :cid is '123' and :date is '2023-01-01'.
