Reputation: 13
I have the primary key as "id" STRING "123456", I want to use (begin_with) query on this primary key , I sit possible ?
Upvotes: 0
Views: 486
Reputation: 12349
No, you can't use begin_with
on the partition key. The workaround is to create a GSI and query that using begin_with
.
Upvotes: 1