Skip to content
Open
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 @@ -56,6 +56,8 @@
]
```

**Note**: This package is a work in progress, currently awaiting its first release.

Check warning on line 59 in content/en/real_user_monitoring/application_monitoring/ios/integrated_libraries.md

View workflow job for this annotation

GitHub Actions / vale

Datadog.tense

Avoid temporal words like 'currently'.

4. Add the Datadog interceptor to your Apollo Client setup:

```swift
Expand All @@ -65,7 +67,7 @@
class CustomInterceptorProvider: DefaultInterceptorProvider {
override func interceptors<Operation: GraphQLOperation>(for operation: Operation) -> [ApolloInterceptor] {
var interceptors = super.interceptors(for: operation)
interceptors.insert(DatadogApollo.createInterceptor(), at: 0)
interceptors.insert(DatadogApolloInterceptor(), at: 0)
return interceptors
}
}
Expand Down
Loading