This is probably the most requested feature, basically people want to write resolvers like they do with graphql. There are two approaches to making this happen:
- Write an option to pass in resolvers that has a function to dynamically determine the type
or
- Switch from using forked graphql-anywhere to graphql-js
Option 2 would be a large undertaking and I'm not 100% sure how we would handle live queries, option 1 is much better to me, and if you are using typescript, we could default the dynamic type lookup to the typescript type.
This is probably the most requested feature, basically people want to write resolvers like they do with graphql. There are two approaches to making this happen:
or
Option 2 would be a large undertaking and I'm not 100% sure how we would handle live queries, option 1 is much better to me, and if you are using typescript, we could default the dynamic type lookup to the typescript type.