@apollo/client#split TypeScript Examples
The following examples show how to use
@apollo/client#split.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: index.ts From ExpressLRS-Configurator with GNU General Public License v3.0 | 6 votes |
link = split(
({ query }) => {
const definition = getMainDefinition(query);
return (
definition.kind === 'OperationDefinition' &&
definition.operation === 'subscription'
);
},
wsLink,
httpLink
)
Example #2
Source File: index.ts From atlas with GNU General Public License v3.0 | 6 votes |
createApolloClient = () => {
const subscriptionLink = new WebSocketLink({
uri: QUERY_NODE_GRAPHQL_SUBSCRIPTION_URL,
options: {
reconnect: true,
reconnectionAttempts: 5,
},
})
const orionLink = new HttpLink({ uri: ORION_GRAPHQL_URL })
const batchedOrionLink = new BatchHttpLink({ uri: ORION_GRAPHQL_URL, batchMax: 10 })
const orionSplitLink = split(
({ operationName }) => {
return operationName === 'GetVideos' || operationName === 'GetVideoCount'
},
batchedOrionLink,
orionLink
)
const operationSplitLink = split(
({ query }) => {
const definition = getMainDefinition(query)
return definition.kind === 'OperationDefinition' && definition.operation === 'subscription'
},
subscriptionLink,
orionSplitLink
)
return new ApolloClient({ cache, link: operationSplitLink })
}
Example #3
Source File: apolloClient.tsx From nextjs-hasura-boilerplate with MIT License | 6 votes |
createApolloClient = (token: string) => {
const ssrMode = typeof window === "undefined";
const link = !ssrMode
? split(
({ query }) => {
const definition = getMainDefinition(query);
return (
definition.kind === "OperationDefinition" &&
definition.operation === "subscription"
);
},
createWSLink(token),
createHttpLink(token)
)
: createHttpLink(token);
return new ApolloClient({ ssrMode, link, cache: new InMemoryCache() });
}
Example #4
Source File: index.ts From fullstack-starterkit with MIT License | 6 votes |
function configureApolloClient(config: Config): ApolloClient<NormalizedCacheObject> {
const httpLink = new HttpLink({ uri: config.endpoints.https });
const wsLink = new WebSocketLink({
uri: config.endpoints.wss,
options: { reconnect: true }
});
const link = split(
({ query }) => {
const definition = getMainDefinition(query);
return definition.kind === 'OperationDefinition' && definition.operation === 'subscription';
},
wsLink,
httpLink
);
const client = new ApolloClient({
link: ApolloLink.from([
onError(({ graphQLErrors, networkError }) => {
if (graphQLErrors) {
graphQLErrors.forEach(({ message, locations, path }) =>
console.log(`[GraphQL error]: Message: ${message}, Location: ${locations}, Path: ${path}`)
);
}
if (networkError) {
console.log(`[Network error]: ${networkError}`);
}
}),
link
]),
cache: new InMemoryCache()
});
return client;
}
Example #5
Source File: index.tsx From ledokku with MIT License | 6 votes |
splitLink = split(
({ query }) => {
const definition = getMainDefinition(query);
return (
definition.kind === 'OperationDefinition' &&
definition.operation === 'subscription'
);
},
wsLink,
httpLink
)
Example #6
Source File: apolloClient.tsx From nextjs-hasura-fullstack with MIT License | 6 votes |
createApolloClient = (token: string) => {
const ssrMode = typeof window === 'undefined'
const link = !ssrMode
? split(
//only create the split in the browser
// split based on operation type
({ query }) => {
const definition = getMainDefinition(query)
return (
definition.kind === 'OperationDefinition' &&
definition.operation === 'subscription'
)
},
createWSLink(token),
createHttpLink(token),
)
: createHttpLink(token)
return new ApolloClient({ ssrMode, link, cache })
}
Example #7
Source File: Shell.tsx From dh-web with GNU General Public License v3.0 | 5 votes |
Shell: FC<ShellProperties> = ({ children }: ShellProperties) => {
// get the authentication token from local storage if it exists
const authToken = useSelector(getAuthenticationToken);
const bearerString = authToken && `Bearer ${authToken}`;
// cross platform web socketing triage (tldr use node lib on server and web lib on browser)
const webSocketImplementation = process.browser ? WebSocket : ws;
const wsLink = new WebSocketLink({
uri: "wss://api.dogehouse.online/graphql",
options: {
reconnect: true,
lazy: true,
timeout: 3000,
connectionParams: {
authorization: bearerString
}
},
webSocketImpl: webSocketImplementation
});
const httpLink = createHttpLink({
uri: "https://api.dogehouse.online/graphql",
});
const authLink = setContext((_, { headers }) => {
// return the headers to the context so httpLink can read them
return {
headers: {
...headers,
authorization: bearerString,
}
};
});
const splitLink = split(
({ query }) => {
const definition = getMainDefinition(query);
return (
definition.kind === "OperationDefinition" &&
definition.operation === "subscription"
);
},
wsLink,
(authLink.concat(httpLink)),
);
const client = new ApolloClient({
link: from([errorLink, splitLink]),
cache: new InMemoryCache(),
});
return (
<ThemeProvider theme={DarkTheme}>
<ApolloProvider client={client}>
<GlobalStyle />
<Head>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet" />
</Head>
<Wrapper>
<NoSsr>
{
children
}
</NoSsr>
</Wrapper>
</ApolloProvider>
</ThemeProvider>
);
}
Example #8
Source File: withApollo.tsx From NextJS-NestJS-GraphQL-Starter with MIT License | 5 votes |
withApolloWithSubscriptions = nextWithApollo(
({ initialState, headers, ...rest }) => {
const clientId = nanoid();
const wsLink = !IS_SERVER
? new WebSocketLink({
uri: WEBSOCKET_API_URL,
options: {
reconnect: true,
connectionParams: {
clientId
}
}
})
: null;
const httpLink = new HttpLink({
uri: IS_SERVER ? SERVER_API_ENDPOINT : BROWSER_API_ENDPOINT,
headers: {
...headers
},
credentials: 'include'
});
/*
* Only create a split link on the browser
* The server can not use websockets and is therefore
* always a http link
*/
const splitLink = !IS_SERVER
? split(
({ query }) => {
const definition = getMainDefinition(query);
return (
definition.kind === 'OperationDefinition' &&
definition.operation === 'subscription'
);
},
wsLink,
httpLink
)
: httpLink;
return new ApolloClient({
ssrMode: IS_SERVER,
link: splitLink,
cache: new InMemoryCache().restore(initialState || {}),
// A hack to get ctx oin the page's props on the initial render
// @ts-ignore
defaultOptions: { ...rest, clientId }
});
},
{
render: ({ Page, props }) => {
return (
<ApolloProvider client={props.apollo}>
<Page
{...props}
{...props.apollo.defaultOptions.ctx}
clientId={props.apollo.defaultOptions.clientId}
/>
</ApolloProvider>
);
}
}
)