Vivek Nayyar
Vivek Nayyar
When an object is created using Object.create(null) it does not contain properties that are inherited from Object for example `hasOwnProperty` or `__proto__` Inside `EncodingTransformer.prototype._handlePlainObject` this causes an issue where in...
@marktani @manjula91 This should fix this issue https://github.com/graphql-boilerplates/react-fullstack-graphql/issues/359 * It was happening because User is an Object and was marked as required field in schema of AuthPayload. Now it's made...
* Readme for minimal setup updated with detailed instruction on installing graphql-cli * Commands for starting GraphQL server and Client added. * Node compatibility version information added. @marktani @manjula91 Please...
@marktani This should fix this issue https://github.com/graphql-boilerplates/react-fullstack-graphql/issues/359 * It was happening because User is an Object and was marked as required field in schema of AuthPayload. Now it's made optional...
First of all great work on this plugin. This is one of the problems I faced too while converting an existing app to vite, so thank you so much for...