Coder Social home page Coder Social logo

Comments (3)

mike-marcacci avatar mike-marcacci commented on May 29, 2024 1

Hi @FluorescentHallucinogen, it is not, as the spec provides a mechanism for mapping GraphQL variables to multipart fields.

Out of curiosity since you're asking, if this were to be possible, how would you want to specify the file's contents?

from graphql-multipart-request-spec.

onzag avatar onzag commented on May 29, 2024

I can understand the reason why he is asking it, and I can understand why it works the way it does (as for some reasons I have to implement a client for this by hand); I think something like:

`--------------------------ec62457de6331cad
Content-Disposition: form-data; name="operations"

{ "query": "mutation { multipleUpload(files: $files) { id } }" }
--------------------------ec62457de6331cad
Content-Disposition: form-data; name="map"

{ "files": ["0", "1"] }
--------------------------ec62457de6331cad
Content-Disposition: form-data; name="0"; filename="b.txt"
Content-Type: text/plain

Bravo file content.

--------------------------ec62457de6331cad
Content-Disposition: form-data; name="1"; filename="c.txt"
Content-Type: text/plain

Charlie file content.

--------------------------ec62457de6331cad--`

This is how I would envision it, but I can truly understand why it would be more of a headache to implement it this way rather than using variables; as there's no way to map the same way, it could break the graphql schema if we specify a wrong type, it need to run async, it would be a headache to implement, so the variables solution is optimal and ensures a better check.

The spec is fine overall, while this might look a lot cleaner, I can see the problems, it breaks the standard and it just gives possible issues :) so it's just fine the way the spec has been written.

from graphql-multipart-request-spec.

jaydenseric avatar jaydenseric commented on May 29, 2024

In the introduction of the spec:

It’s possible to implement:

  • Nesting files anywhere within operations (usually in variables).

Files in operation variables is the most common use case, but you can have files anywhere in the operations.

@FluorescentHallucinogen I think this is not exactly your question tho, as you seem to be getting at placing files directly in the query itself? This is impossible, as file upload streams can't be represented as strings.

from graphql-multipart-request-spec.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.