Miguel Oller
Miguel Oller
Perhaps in addition to passing node args, we could also pass nodemon args [here](https://github.com/jaredpalmer/backpack/blob/4b57bd5b1f751222340b5e4bf764a351c2b468b6/packages/backpack-core/bin/dev#L34) and use `-e js,graphql` as documented [here](https://github.com/remy/nodemon/blob/6925494fbdf82edb905e72c8712d91e3652e82b1/README.md#specifying-extension-watch-list). Thoughts @jaredpalmer?
I accidentally closed the PR by force pushing the branch after removing all commits.
@jakelacey2012, great question! The main difference from Apollo's `makeExecutableSchema` is that you can only make a schema and that's it. With `graphql-utilities` you can build intermediate GraphQL.js types. This is...
Hi @steffenmllr, sorry for the lack of detailed API docs. They're coming soon! 😆 To make a scalar type you have two options. Pass in your configuration: ```js build(` scalar...
Ahh, I see your issue. When you have multiple types defined in the template string you need a config map instead of a config. This is something that will be...
Hmm, interesting. It shouldn't be throwing that error unless you're defining UUID again somewhere else. There's no need to type `scalar Date` and `scalar UUID` in the template string if...
Thanks man! Appreciate you using it and hopefully it will be even more useful once we implement the planned changes. 😄
@steffenmllr, yes! We will be completely revamping the API so that it's not as confusing. Take a look at #12 for more info on how the API will change. With...
For the next release (`v0.1.0`) we'll do the following: - Keep schema inference with operations in any combination of AST or type dependencies. Good error messages (#4) are critical for...
This all makes sense. As to a practical reason as to why one might want to materialize a context, and this isn't necessarily solved by my OP, what's the plan...