You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Context: I'm using Remix to send gql mutations to separate backend service.
Workflow:
standard form submission (multipart) from frontend to Remix backend action.
form is parsed with remix helper
variables passed to graphql request
I can see that the body is successfully transformed to new formdata conforming to the graphql upload spec
other backend service responds with error POST body missing, invalid Content-Type, or JSON object has no keys.
Inspecting the headers just before it is sent off suggests that multipart/form-data boundary=XYZ content type header is not being set -- in fact there is no content type specified at all
I'm not sure if I'm doing something wrong or if this is a limitation of the library at the moment?