
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
@datadog/mobile-react-native-apollo-client
Advanced tools
A client-side React Native module to interact with Apollo Client and Datadog
Monitor your GraphQL resources with Real User Monitoring (RUM) and perform the following:
RUM supports GraphQL requests created using @apollo/client.
Set up the RUM React Native SDK on your mobile React Native application. For more information, see RUM React Native Monitoring.
Add @apollo/client
to your application following the official installation documentation.
If you initialize your ApolloClient with the uri
parameter, initialize it with a HttpLink
:
import { ApolloClient, HttpLink } from '@apollo/client';
// before
const apolloClient = new ApolloClient({
uri: 'https://my.api.com/graphql'
});
// after
const apolloClient = new ApolloClient({
link: new HttpLink({ uri: 'https://my.api.com/graphql' })
});
Import DatadogLink
from @datadog/mobile-react-native-apollo-client
and use it in your ApolloClient initialization:
import { ApolloClient, from, HttpLink } from '@apollo/client';
import { DatadogLink } from '@datadog/mobile-react-native-apollo-client';
const apolloClient = new ApolloClient({
link: from([
new DatadogLink(),
new HttpLink({ uri: 'https://my.api.com/graphql' }) // always in last position
])
});
For more information on Apollo Client Links, refer to the official documentation.
Use a resourceEventMapper
in your Datadog configuration to remove sensitive data from GraphQL variables:
const datadogConfiguration = new DatadogProviderConfiguration(
'<CLIENT_TOKEN>',
'<ENVIRONMENT_NAME>',
'<RUM_APPLICATION_ID>',
true,
true,
true
);
datadogConfiguration.resourceEventMapper = event => {
// Variables are stored in event.context['_dd.graphql.variables'] as a JSON string when present
if (event.context['_dd.graphql.variables']) {
const variables = JSON.parse(event.context['_dd.graphql.variables']);
if (variables.password) {
variables.password = '***';
}
event.context['_dd.graphql.variables'] = JSON.stringify(variables);
}
return event;
};
FAQs
A client-side React Native module to interact with Apollo Client and Datadog
The npm package @datadog/mobile-react-native-apollo-client receives a total of 10,204 weekly downloads. As such, @datadog/mobile-react-native-apollo-client popularity was classified as popular.
We found that @datadog/mobile-react-native-apollo-client demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.