``` const body = new global.FormData() body....
# prisma-whats-new
m
Copy code
const body = new global.FormData()
      body.append('data', file)
      const res = await fetch(GRAPHCOOL_FILE_ENDPOINT, {
        method: 'POST',
        body,
      })
z
That's what I have
what should
body
look like?
nevermind I figured it out. my body was formatted incorrectly. Thanks for the heads up!