Jayden Seric
Jayden Seric
Duplicates https://github.com/jpuri/html-to-draftjs/issues/78 .
I'm not following why this is not necessary; what is the right way to add a hash to a named route in JSX?
Thanks for sharing all of that 🙂 But I think your PR is way nicer, maybe it should be reopened? It makes sense that `hash` can be used on a...
@jessedvrs your comment was really helpful, this feature is supported in [apollo-upload-server](https://github.com/jaydenseric/apollo-upload-server). I referenced you in the readme 🙂 See [here](https://github.com/jaydenseric/apollo-upload-server/blob/v1.1.1/src/index.js#L5) in the src. I created a generic `processRequest` function...
Not certain how all this works, but [here](https://github.com/HriBB/graphql-server-express-upload/blob/v1.0.0/src/index.js#L16) in graphql-server-express-upload also looks relevant.
For those who find this pressing, I ended up supporting single `File` objects, `File` arrays, and `FileList` objects anywhere within mutation or query variables with [apollo-upload-client](https://github.com/jaydenseric/apollo-upload-client).
To get batching to work, you need to use `createBatchingNetworkInterface`. I can't work out how to get both custom interfaces to work together: ```js import ApolloClient, {createBatchingNetworkInterface} from 'apollo-client' import...
I got this working by dropping in [taion/graphql-type-json](https://github.com/taion/graphql-type-json). [The name is `JSON`](https://github.com/taion/graphql-type-json/blob/v0.1.4/src/index.js#L32), when ideally it would be `UploadedFile`, but it seems to be working ok. ```js import GraphQLJSON from 'graphql-type-json'...
Perhaps, I am in the middle of some epic refactoring but might be in a place to look at it sometime in the next few days. The importable resolver might...
A benefit to keeping it here is the `graphql` dependency; it already exists here but not yet in apollo-upload-network-interface. I for one can't stand TypeScript in OSS, it's not real...