Code Monkey home page Code Monkey logo

hapi-graphql-2's People

Contributors

nover avatar pingvinen avatar rogchap avatar simondegraeve avatar skevy avatar sublimino avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

hapi-graphql-2's Issues

Maybe extract the `hasRoute` test function into a package

I have also implemented the following test function multiple times in various projects - maybe we should extract it and put it into a hapi-test-utils package.

const hasRoute = (server, path, method) => {
  let foundRoute = false;

  server.table().forEach((route) => {
    if (route.path === path && route.method.toLowerCase() === method.toLowerCase()) {
      foundRoute = true;
    }
  });

  return foundRoute;
};

Schema errors are not properly handled

If a schema being loaded into this plugin has errors, and a client requests the schema (like graphql playground) the server / plugin dies a horrible death which masks the fact that the schema had trouble and simply emits to the console:

Debug: internal, implementation, error 
core.js:122
    TypeError: Cannot destructure property `statusCode` of 'undefined' or 'null'.
    at /workspace/api/node_modules/hapi-graphql-2/src/index.js:277:40
    at <anonymous>
    at process._tickCallback (internal/process/next_tick.js:188:7)

However the underlying error was really:

"The type of XXXInput.Prop must be Input Type but got: AnotherTypeThatMakesGraphQLPuke.

Hence the error handler should be a bit more intelligent to avoid such crashes.

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.