Coder Social home page Coder Social logo

`@stream` is broken about graphql-helix HOT 4 CLOSED

contra avatar contra commented on September 13, 2024 1
`@stream` is broken

from graphql-helix.

Comments (4)

n1ru4l avatar n1ru4l commented on September 13, 2024 1

@maraisr The graphql-js test case you are referring to is not using an AsyncGenerator resolver that yields values, but a resolver that resolves to an Array. I assume because of that graphql-js publishes the hasNext: false as part of the last result that includes an item. Instead of a separate execution result

I created the following code-sandbox: https://codesandbox.io/s/pedantic-glitter-8tudl?file=/src/index.ts

It showcases that for an AsyncGenerator the following results are published from execute:

const schema = new graphql.GraphQLSchema({
  query: new graphql.GraphQLObjectType({
    name: "Query",
    fields: {
      stream: {
        type: new graphql.GraphQLList(graphql.GraphQLString),
        resolve: async function* () {
          for (const word of ["ay", "sup", "oi"]) {
            yield word;
          }
        }
      }
    }
  })
});
[
  {
    "data": {
      "stream": [
        "ay"
      ]
    },
    "hasNext": true
  },
  {
    "data": "sup",
    "path": [
      "stream",
      1
    ],
    "hasNext": true
  },
  {
    "data": "oi",
    "path": [
      "stream",
      2
    ],
    "hasNext": true
  },
  {
    "hasNext": false
  }
]

Here is an example where the resolver only returns an Array of elements (similar to what the graphql-js test you are referring to is doing https://codesandbox.io/s/cool-hamilton-orizq?file=/src/index.ts

const schema = new graphql.GraphQLSchema({
  query: new graphql.GraphQLObjectType({
    name: "Query",
    fields: {
      stream: {
        type: new graphql.GraphQLList(graphql.GraphQLString),
        resolve: () => ["ay", "sup", "oi"]
      }
    }
  })
});
[
  {
    "data": {
      "stream": [
        "ay"
      ]
    },
    "hasNext": true
  },
  {
    "data": "sup",
    "path": [
      "stream",
      1
    ],
    "hasNext": true
  },
  {
    "data": "oi",
    "path": [
      "stream",
      2
    ],
    "hasNext": false
  }
]

The helix test you are referring to is working as expected. As the chunks[2] string is the following:


Content-Type: application/json; charset=utf-8
Content-Length: 47

{"data":"C","path":["stream",2],"hasNext":true}
---
Content-Type: application/json; charset=utf-8
Content-Length: 17

{"hasNext":false}
-----

I agree that the test should also check for the presence of the {"hasNext":false} string part though! I created #85 for this.

from graphql-helix.

maraisr avatar maraisr commented on September 13, 2024

In any case, will have this behaviour verified with the working group, because I suspect it should flush hasNext: false on the "last" payload.

from graphql-helix.

n1ru4l avatar n1ru4l commented on September 13, 2024

@maraisr An AsyncGenerator can sometimes not determine whether a yielded item is the last item as it might need to make roundtrips to a database first. It would be kind of weird to block the publishing of the current value until the next value has been retrieved just to save some bandwidth caused by sending an additional {"hasNext":false} payload over the wire.

from graphql-helix.

n1ru4l avatar n1ru4l commented on September 13, 2024

In any case, this is not a concern of graphql-helix as it just wraps graphql-js. So all your concerns are actually graphql-js related and should be raised on the graphql-js repository and be discussed in the working group.

from graphql-helix.

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.