Skip to content

Commit 572bf66

Browse files
Fix relevant typo on Modeling/Indexes page (#527)
1 parent ecd279c commit 572bf66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

www/src/pages/en/modeling/indexes.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ const schema = {
393393

394394
DynamoDB is a case-sensitive data store, and therefore it is common to convert the casing of keys to uppercase or lowercase prior to saving, updating, or querying data to your table. ElectroDB, by default, will lowercase all keys when preparing query parameters. For those who are using ElectroDB with an existing dataset, have preferences on upper or lowercase, or wish to not convert case at all, this can be configured on an index key field basis.
395395

396-
In the example below, we are configuring the casing ElectroDB will use individually for the Partition Key and Sort Key on the GSI "gsi1". For the index's PK, mapped to `gsi1pk`, we ElectroDB will convert this key to uppercase prior to its use in queries. For the index's SK, mapped to `gsi1pk`, we ElectroDB will not convert the case of this key prior to its use in queries.
396+
In the example below, we are configuring the casing ElectroDB will use individually for the Partition Key and Sort Key on the GSI "gsi1". For the index's PK, mapped to `gsi1pk`, we ElectroDB will convert this key to uppercase prior to its use in queries. For the index's SK, mapped to `gsi1sk`, we ElectroDB will not convert the case of this key prior to its use in queries.
397397

398398
```typescript
399399
{

0 commit comments

Comments
 (0)