@apollo/client#from TypeScript Examples
The following examples show how to use
@apollo/client#from.
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: client.ts From ui with GNU Affero General Public License v3.0 | 6 votes |
getClient = (): ApolloClient<NormalizedCacheObject> => {
if (!client) {
const config = getConfig() as NextConfigType
if (!config) return client
const { publicRuntimeConfig, serverRuntimeConfig } = config
client = new ApolloClient<NormalizedCacheObject>({
cache: new InMemoryCache(),
link: from([
setContext((request, context) => {
const headers: { [key: string]: string } = {}
if (process.browser) {
const access = localStorage.getItem('access')
if (access) {
headers.authorization = `Bearer ${access}`
}
}
return {
headers,
}
}),
new HttpLink({
uri: serverRuntimeConfig.endpoint || publicRuntimeConfig.endpoint,
}),
]),
})
}
return client
}
Example #2
Source File: index.tsx From ledokku with MIT License | 5 votes |
apolloClient = new ApolloClient({
link: from([authLink, errorLink, splitLink]),
cache: new InMemoryCache(),
})
Example #3
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 #4
Source File: index.tsx From game-store-monorepo-app with MIT License | 5 votes |
client = new ApolloClient({
link: from([errorLink, httpLink]),
cache: new InMemoryCache({
typePolicies: {
Query: {
fields: {
allGames: {
keyArgs: ['dates', 'pageSize', 'tags', 'genres', 'publishers', 'ordering', 'search'],
merge(existing: RawgGameResponse, incoming: RawgGameResponse): RawgGameResponse {
return handleQueryMergeResult<RawgGameResponse>(existing, incoming);
},
},
gameSeries: {
keyArgs: ['id'],
merge(existing: RawgGameResponse, incoming: RawgGameResponse): RawgGameResponse {
return handleQueryMergeResult<RawgGameResponse>(existing, incoming);
},
},
allGenres: {
keyArgs: ['pageSize', 'ordering'],
merge(existing: RawgGenreResponse, incoming: RawgGenreResponse): RawgGenreResponse {
return handleQueryMergeResult<RawgGenreResponse>(existing, incoming);
},
},
allTags: {
keyArgs: ['pageSize', 'ordering'],
merge(existing: RawgTagResponse, incoming: RawgTagResponse): RawgTagResponse {
return handleQueryMergeResult<RawgTagResponse>(existing, incoming);
},
},
allPublishers: {
keyArgs: ['pageSize', 'ordering'],
merge(existing: RawgPublisherResponse, incoming: RawgPublisherResponse): RawgPublisherResponse {
return handleQueryMergeResult<RawgPublisherResponse>(existing, incoming);
},
},
},
},
},
}),
})