Skip to content

fix: heading order on gen1/prev subscribe-data page #7790

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Amplify.Hub.listen(
);
```

#### SubscriptionStatus
### SubscriptionStatus

- **`connected`** - Connected and working with no issues
- **`connecting`** - Attempting to connect (both initial connection and reconnection)
Expand Down
6 changes: 3 additions & 3 deletions src/fragments/lib-v1/graphqlapi/ios/subscribe-data.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ func createSubscription() {

</BlockSwitcher>

### Unsubscribing from updates
## Unsubscribing from updates

#### Listener (iOS 11+)
### Listener (iOS 11+)

To unsubscribe from updates, you can call `cancel()` on the subscription

Expand All @@ -95,7 +95,7 @@ func cancelSubscription() {
}
```

#### Combine (iOS 13+)
### Combine (iOS 13+)

With the Combine flavor of the `subscribe()` API, you have the option of canceling just the downstream Combine subscriber, or the entire GraphQL subscription.

Expand Down
2 changes: 1 addition & 1 deletion src/fragments/lib/graphqlapi/flutter/subscribe-data.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Amplify.Hub.listen(
);
```

#### SubscriptionStatus
### SubscriptionStatus

- **`connected`** - Connected and working with no issues
- **`connecting`** - Attempting to connect (both initial connection and reconnection)
Expand Down
6 changes: 3 additions & 3 deletions src/fragments/lib/graphqlapi/ios/subscribe-data.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ func createSubscription() {

</BlockSwitcher>

### Unsubscribing from updates
## Unsubscribing from updates

#### Async/Await
### Async/Await

To unsubscribe from updates, you can call `cancel()` on the subscription.

Expand All @@ -100,7 +100,7 @@ func cancelSubscription() {
}
```

#### Combine
### Combine

Calling `cancel()` on the sequence will disconnect the subscription from the backend. Any downstream subscribers will also be cancelled.

Expand Down