Giter VIP home page Giter VIP logo

specialist-server's Issues

Bug in field->types can cause missing types in __schema

Hi ajk,
thanks for your wonderful work on specialist-server, I love it :)
Defining the schema with spec really helps to eliminate otherwise redundant code.
Also I enjoyed reading the code of your implementation ๐Ÿ‘

While defining a bit more complex schema, I stumbled over an bug in the introspection. Depending on the order in which I defined the resolvers in the executor creation, some types had been missing.
I stripped it down to this minimal example.

The bug is caused by returning coll when (contains? coll (:name v-type)) in the case that (:name v-type) is nil for multiple types, because v-type was recursively calculated from (:ofType v-t).

A trivial fix would be checking that we are not in a recursive v-type before returning coll without taking care of the depending types in the :else case.

- (contains? coll (:name v-type)) coll
+ (and (contains? coll (:name v-type)) (= v-type (type v))) coll

This however would cause an infinite loop when types circular depend on each other as in the specialist-server.batch-loader-test example.

Therefore I suggest another fix:
When we assoc the original v to the v-type, we would be able to know the already processed vs and than don't need the (contains? coll (:name v-type)) case any longer, but can use the default case with the modification that we filter already processed vs from the set.

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.