I am new to DynamoDB, and had a question how I can find all of the live entries in my DynamoDb table. Each entry in my table has a start and end date. I am confused on how I can query for the entries that the current date falls between the start and end date. Any ideas how I can do this?
I understand that I can only have a primary and range key. Is it possible to query for other columns in the entry?
Each entry looks like this:
id: xxxxxx startDate: 123456 // Epoch time endDate: 334243 // Epoch time