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
Before you begin, you will need an Amplify Data backend deploy. To get started, see [Set up Data](/[platform]/swift/build-a-backend/data/set-up-data/).
168
161
169
-
Once you have deployed your backend and created the `amplify_outputs.json`, you can use Amplify library to read and retrieve your configuration values with the following steps:
162
+
Once you have deployed your backend and created the `amplify_outputs.json` file, you can use Amplify library to read and retrieve your configuration values with the following steps:
170
163
171
164
<InlineFilterfilters={["swift"]}>
172
165
@@ -221,14 +214,14 @@ If you define multiple authorization strategies on a single model, you will have
221
214
The schema is used by Apollo’s code generation tool to generate API code that helps you execute GraphQL operations. To retrieve your AWS AppSync schema:
222
215
223
216
<InlineFilterfilters={["swift"]}>
224
-
1. Navigate to your API on the AWS AppSync console
217
+
1. Navigate to your API on the [AWS AppSync console](https://console.aws.amazon.com/appsync/home)
225
218
2. On the left side, select Schema
226
219
3. When viewing your schema, there should a “Export schema” drop down. Select this and download the `schema.json` file.
227
220
4. Add this file to your project as directed by [Apollo Code Generation documentation](https://www.apollographql.com/docs/ios/code-generation/introduction)
228
221
</InlineFilter>
229
222
230
223
<InlineFilterfilters={["android"]}>
231
-
1. Navigate to your API on the AWS AppSync console
224
+
1. Navigate to your API on the [AWS AppSync console](https://console.aws.amazon.com/appsync/home)
232
225
2. On the left side, select Schema
233
226
3. When viewing your schema, there should a “Export schema” drop down. Select this and download the `schema.json` file.
234
227
4. Add this file to your project as directed by [Apollo Code Generation documentation](https://www.apollographql.com/docs/ios/code-generation/introduction)
@@ -240,7 +233,7 @@ The following example shows how you can create an Apollo client that allows perf
0 commit comments