Giter VIP home page Giter VIP logo

Comments (4)

Cito avatar Cito commented on July 29, 2024 1

Hi @itkach, sorry for the late answer.

The reason why it works in the GraphQL.js example is because it sets the type like this:

Object.assign(schema._typeMap.MyScalar, MyScalar)

Note that this is different from simply setting _typeMap.MyScalar = MyScalar, because it keeps the MyScalar object and replaces only its properties. So all references to this type will see the changes as well. The direct equivalent in Python would be doing this:

schema.type_map["MyScalar"].__dict__.update(MyScalar.__dict__)

Or, you can do it like this:

my_scalar = schema.type_map["MyScalar"]
my_scalar.serialize = ...
my_scalar.pare_literal = ...
my_scalar.pare_value = ...

Or, create a function that copies these methods from one GraphQLScalarType to another.

from graphql-core.

itkach avatar itkach commented on July 29, 2024

@Cito Thank you for the explanation, I see now how it works. It's unfortunate that GraphQL.js thinks that mutating guts of an object inside of a not-quite-public other object is an acceptable API. I understand that graphql-core-next is a port, but perhaps there's a room for a better API here?

from graphql-core.

Cito avatar Cito commented on July 29, 2024

@itkach There is actually a better API for creating executable schemas from SDL, but it's in graphql-tools which is not part of GraphQL.js. It provides a function makeExecutableSchema that can add the resolvers to a schema given by SDL, and also allows using custom Scalar and Enum types.

It would be good to have something like that in Python, either as a separate package like graphql-tools or as a subpackage of graphql-core-next. I will create a ticket to move that forward.

from graphql-core.

Cito avatar Cito commented on July 29, 2024

But note that you can of course build executable schemas directly in graphql-core-next using the provided classes, as I have shown in the blog article above. This is considered the primary way of building them in graphql-core-next.

from graphql-core.

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.