Dylan Stewart
Dylan Stewart
Have a flag to indicate that the order of items in arrays do not matter.
## What problem are you trying to solve? We have cases where we are using a dataloader on the server that utilizes server credentials to cache data that is used...
This is more likely an issue on the ts-node side of things, but I'm not sure how the chart statistics are obtained to open up a topic over there.
Currently there is a subscribe and a resolve field on resolvers. I propose an unsubscribe field as well that can be used to release server resources. There is currently no...
I recently found out about JSON Type Definition, which is not extensive as JSON Schema in its goals, but definitely similar. I think a big part of it is targeting...
Should add a Typescript definitions file to DefinitelyTyped. Should be as simple as copying the official MongoDB definition and pruning it.
Allowing for render props. This should simplify a lot of the issues people have using refs. Example usage: ```js {({ addNotification }) => ( addNotification({ message: 'New notification' })}>Add Notification...
Using LRU cache https://www.npmjs.com/package/lru-cache would handle the duration and allow for more complex cache eviction policies. Seems like a no brainer to me UNLESS you are trying to keep zero...
The limitation of subscriptions being tied to mutations is mind boggling to me - I would say the vast majority of meaningful applications are not simple crud behind a graphql...
Would be worth adding typescript definitions to DefinitelyTyped. Should be easy enough to take the MongoDB typings and simply cut out the parts that aren't implemented for mongo-mock.