react-fullstack-graphql
react-fullstack-graphql copied to clipboard
Starter projects for fullstack applications based on React & GraphQL.
> Error: Field “createUser” of type “User!” must have a selection of subfields. Did you mean “createUser { ... }“? ```graphql mutation { signup(email:“[email protected]”,name:“test”,password:“test1234”) { token } } ```
This is half question, half suggestion, but wouldn't it make sense for this boilerplate code to have its own client folder with its own package.json file?
I've noticed several individuals asking for help when using the boilerplates. The source of the recurring problem is dangling commas, which aren't recognized until Node 8. Node 8 is now...
The advanced boilerplate has a lot of the older non-apollo-boost way of setting up the ApolloClient. For the purposes of helping others who might be new to Apollo and GraphQL,...
@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...
I've noticed that in the front-end related graphql-boilerplates, we are asking users to start the front-end application and open another tab to start the server. I propose we change the...
Update to use render props API from React Apollo 2.1. This needs to be taken care for advanced react boilerplate for all the components.
Hi, I have import a .sql file to MySQL, with some seed data. And I edit the code in . But every time I execute `prisma deploy`, it would be...