Giter VIP home page Giter VIP logo

Comments (6)

Cito avatar Cito commented on July 29, 2024

Hi @astronouth7303. Graphql-core is replicating the behavior of graphql-js. Whether built-in scalars are added automatically or not has changed in the last versions of graphql-js (see graphql/graphql-js/issues/2005). The current state is that they are not added automatically, i.e. they are only included if they are used in the schema (which makes sense, if you think about it).

The actual problem here is that the query type for friendsConnection used in your query is not part of the schema, so it would not validate against that schema anyway. You need to add that type to your schema first. To construct such connection types, you can use graphql-relay-py.

from graphql-core.

AstraLuma avatar AstraLuma commented on July 29, 2024

Yeah, I pulled the queries from the graphql tutorial but the schema from this project's test suite. I guess they mismatch more than I think. (The starwars code is mostly for testing and toying.)

(which makes sense, if you think about it)

Ummm... I suppose? Most type systems I work with assume some number of universal builtins.

It's not clear to me what problems "automatically add builtin scalar types" creates, and that's some pretty dense stuff to wade through. I'll try again later.

  • Is this error message a sign that this query will never validate? (Can it maybe be improved in the case of builtin names?)
  • Am I missing an invocation/argument to add the builtin types on either the client and/or server side?

from graphql-core.

Cito avatar Cito commented on July 29, 2024

Yes, this query will never validate or execute until you add the friendsConnection type to your schema. And when you do this, it will then also include the Int type automatically, because it is used by the friendsConnection. You don't need to add the builtin-types manually.

from graphql-core.

AstraLuma avatar AstraLuma commented on July 29, 2024

I think I might do that anyway, just for UX reasons.

  • "Int not defined" => "wtf, is this thing bugged?"
  • "friendsConnection isn't found on Character" => "Oh, that's not in this schema"

Like, yeah, the query will fail to validate either way, but the first one is weird and confusing and makes you question life, while the second is sensible and useful.

from graphql-core.

Cito avatar Cito commented on July 29, 2024

GraphQL is nice in that regard: ExecutionResult.errors is a list of errors, you will get one error for the missing Int and another one for the missing friendsConnection. The missing Int error only comes first because it appears first (in line 1), while the other one appears later (in line 12).

from graphql-core.

AstraLuma avatar AstraLuma commented on July 29, 2024

In my application, I have to pick one error and raise that, and the error that appears first in the file is the obvious one.

(Yes, I'll add a CLI tool later that'll show all errors, but MVPs and all that.)

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.