Skip to content

Commit

Permalink
add operation info about the database
Browse files Browse the repository at this point in the history
  • Loading branch information
py committed Dec 3, 2024
1 parent 0a0880a commit 2325558
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions registry/hasura/dynamodb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,16 @@ Below, you'll find a matrix of all supported features for the DynamoDB for NoSQL
| Nested Sorting || |
| Nested Relationships || |

## Documentation

The DynamoDB NoSQL database uses 3 operations to fetch data based on the partition and sort key:

1. GET transaction: Both the partition and sort keys are provided in the filter clause. This is th eleast expensive operation.
2. Query: Partition key is provided in the filter clause.
3. Scan: None of the key attributes are provided. This is the most expensive operation.

Note: To fetch the data using the Global Secondary Index, the collection name should be provided as '<table_name>:<gsi_name>

## Prerequisites

1. Create a [Hasura Cloud account](https://console.hasura.io)
Expand Down

0 comments on commit 2325558

Please sign in to comment.