本文整理汇总了TypeScript中apollo-link.ApolloLink.concat方法的典型用法代码示例。如果您正苦于以下问题:TypeScript ApolloLink.concat方法的具体用法?TypeScript ApolloLink.concat怎么用?TypeScript ApolloLink.concat使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类apollo-link.ApolloLink
的用法示例。
在下文中一共展示了ApolloLink.concat方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it('does not update the cache on a mutation', () => {
let called = 0;
const inspector = new ApolloLink((operation, forward) => {
called++;
return forward(operation).map(result => {
called++;
return result;
});
});
const client = new ApolloClient({
link: inspector.concat(createMutationLink()),
cache: new InMemoryCache({ addTypename: false }),
});
return client
.query({ query })
.then(() =>
client.mutate({ mutation, variables, fetchPolicy: 'no-cache' }),
)
.then(() => {
return client.query({ query }).then(actualResult => {
expect(actualResult.data).toEqual(result);
});
});
});
示例2: constructor
constructor(apollo: Apollo, httpLink: HttpLink) {
apollo.create({
link: middlewareLink.concat(
httpLink.create({
uri: 'https://1jzxrj179.lp.gql.zone/graphql',
}),
),
cache: new InMemoryCache(),
});
}