@urql/exchange-multipart-fetch
v1.1.0
Published
An exchange that allows regular fetch and will transition to multipart when files are included
Readme
@urql/exchange-multipart-fetch
DEPRECATION NOTICE: The
multipartFetchExchangehas been deprecated, and@urql/corenow supports GraphQL Multipart Requests natively. This won't break the behaviour of your existing apps, however, it's recommended to remove themultipartFetchExchangefrom your apps.
The multipartFetchExchange is an exchange that builds on the regular fetchExchange
but adds the multipart file upload capability.
Quick Start Guide
First install @urql/exchange-multipart-fetch alongside urql:
yarn add @urql/exchange-multipart-fetch
# or
npm install --save @urql/exchange-multipart-fetchYou'll then need to add the multipartFetchExchange method, that this package exposes,
to your exchanges.
import { createClient, dedupExchange, cacheExchange } from 'urql';
import { multipartFetchExchange } from '@urql/exchange-multipart-fetch';
const client = createClient({
url: 'http://localhost:1234/graphql',
exchanges: [dedupExchange, cacheExchange, multipartFetchExchange],
});Now we can start uploading files to our server!
