You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<Accordiontitle="Review how this works under the hood with Amazon DynamoDB">
108
130
109
131
Amplify uses Amazon DynamoDB tables as the default data source for `a.model()`. For key-value databases, it is critical to model your access patterns with "secondary indexes". Use the `.secondaryIndexes()` modifier to configure a secondary index.
@@ -185,6 +207,27 @@ let queriedCustomers = try await Amplify.API.query(
185
207
```
186
208
</InlineFilter>
187
209
210
+
<InlineFilterfilters={["flutter"]}>
211
+
212
+
The example client query below allows you to query for "Customer" records based on their `accountRepresentativeId`:
0 commit comments