Andrew E. Rhyne

Results 87 comments of Andrew E. Rhyne

https://github.com/HriBB/graphql-server-express-upload/issues/7

I've been thinking about this a lot. I think the simplest way to implement this is to recursively traverse the variables object and look for file types such as files,...

@sandervanhooft @HriBB we should probably implement some sort of "adapter" construct for browser vs native that abstracts away the file input type and presents a unified object for transport over...

@sandervanhooft you have to send files as form data. https://github.com/okonet/react-dropzone doesn't appear to have any opinions as to how you send the data, they just provide hooks to receive the...

@HriBB any update on this? I know I said I'd help a while back but I've been super busy at work. Are we still only supporting FileList objects? It would...

https://github.com/HriBB/apollo-upload-network-interface/issues/5

You can use MemoryStore for Multer to avoid having to read the file after the fact, as each file object will then contain a Buffer object with the uploaded file...

Just look at multer docs. It's in the readme. This package doesn't care about how the file is shaped