Skip to content

Instantly share code, notes, and snippets.

@maticzav
Created November 29, 2017 20:26
Show Gist options
  • Save maticzav/cf00a6b6b9bbf636c3510408dff9ab9c to your computer and use it in GitHub Desktop.
Save maticzav/cf00a6b6b9bbf636c3510408dff9ab9c to your computer and use it in GitHub Desktop.
import fetch from 'isomorphic-fetch'
export const uploadFile = file => {
const data = new FormData()
data.append('data', file)
return fetch(GRAPHCOOL_FILE_URL, {
method: 'POST',
body: data,
credentials: 'same-origin'
}).then(res => res.json())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment