@graphql-yoga/urql-exchange
Version:
7 lines (6 loc) • 307 B
JavaScript
import { buildHTTPExecutor, } from '@graphql-tools/executor-http';
import { executorExchange } from '@graphql-tools/executor-urql-exchange';
export function yogaExchange(options) {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
return executorExchange(buildHTTPExecutor(options));
}