···101101import { Client, dedupExchange, fetchExchange } from 'urql';
102102103103const noopExchange = ({ client, forward }) => {
104104- return operation$ => {
104104+ return operations$ => {
105105 // <-- The ExchangeIO function
106106 // We receive a stream of Operations from `dedupExchange` which
107107 // we can modify before...