any advice on handling file uploads with lacinia? besides this issue on multi-part requests (https://github.com/walmartlabs/lacinia/issues/187) couldn't find any info on it online
I'm using this spec on an Alumbra server with this middleware https://github.com/r0man/ring-graphql-multipart and ring.middleware.multipart-params
It may work for Lacina as well.
Yeah I found your stuff, I have an implementation for Lacinia laying around that I want to release in a few days ^^
Somewhat similar, somewhat different
I think general advice is to use a mutation to get a file upload id, then upload the file to a normal HTTP handler using the id
At some point I stumbled upon this spec: https://github.com/jaydenseric/graphql-multipart-request-spec
Thats probably also where that issue came from
oh that is also in that issue, reading is hard 😕