Giter Site home page Giter Site logo

Comments (5)

n1ru4l avatar n1ru4l commented on June 11, 2024 1

I don't think so that this would disrupt the flow. If you take a quick look here the function is just used to get all the dependencies for executing the operation: https://github.com/n1ru4l/graphql-live-query/blob/9acc7c7714462fbd4bfbf28fb2902056be4a5fa5/packages/socket-io-graphql-server/src/registerSocketIOGraphQLServer.ts#L212-L234 Maybe that approach indeed makes more sense for more transport restrictive implementations 🤔

So the example API for graphql-helix could look like this:

const result = await processRequest(async () => ({
  operationName,
  query,
  variables,
  request,
  schema,
}));

But at the same time, the factory function could also be called in userland before passing stuff to processRequest?

const params = await (async () => ({
  operationName,
  query,
  variables,
  request,
  schema,
}))()
const result = await processRequest(params);

from graphql-helix.

n1ru4l avatar n1ru4l commented on June 11, 2024

I don't wanna force this on graphql-helix, but instead of having a separate factory function for every single thing, it could be possible to just do one that covers all use-cases? E.g. like I am doing that in my Socket.io transport: https://github.com/n1ru4l/graphql-live-query/blob/9acc7c7714462fbd4bfbf28fb2902056be4a5fa5/packages/socket-io-graphql-server/src/registerSocketIOGraphQLServer.ts#L47-L79

from graphql-helix.

dotansimha avatar dotansimha commented on June 11, 2024

I don't wanna force this on graphql-helix, but instead of having a separate factory function for every single thing, it could be possible to just do one that covers all use-cases? E.g. like I am doing that in my Socket.io transport: n1ru4l/graphql-live-query@9acc7c7/packages/socket-io-graphql-server/src/registerSocketIOGraphQLServer.ts#L47-L79

Yeah, that totally makes sense, but it has an additional side-effect because then graphql-helix is no longer in control of the execution flow (parsing -> validation -> execution) and it needs to be implemented separately, right?

from graphql-helix.

dotansimha avatar dotansimha commented on June 11, 2024

I don't think so that this would disrupt the flow. If you take a quick look here the function is just used to get all the dependencies for executing the operation: n1ru4l/graphql-live-query@9acc7c7/packages/socket-io-graphql-server/src/registerSocketIOGraphQLServer.ts#L212-L234 Maybe that approach indeed makes more sense for more transport restrictive implementations 🤔

So the example API for graphql-helix could look like this:

const result = await processRequest(async () => ({
  operationName,
  query,
  variables,
  request,
  schema,
}));

But at the same time, the factory function could also be called in userland before passing stuff to processRequest?

const params = await (async () => ({
  operationName,
  query,
  variables,
  request,
  schema,
}))()
const result = await processRequest(params);

Oh ok I see now :) It does makes a lot of sense :)

from graphql-helix.

danielrearden avatar danielrearden commented on June 11, 2024

Closing. As discussed, this can be done outside of processRequest.

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.