@urql/exchange-multipart-fetch

An exchange that allows regular fetch and will transition to multipart when files are included

Usage no npm install needed!

<script type="module">
  import urqlExchangeMultipartFetch from 'https://cdn.skypack.dev/@urql/exchange-multipart-fetch';
</script>

README

@urql/exchange-multipart-fetch

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-fetch

You'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!