django-graphql-apollo-react-demo
django-graphql-apollo-react-demo copied to clipboard
Code for a workshop about my Django, GraphQL, ReactJS, Apollo-stack
The current mutation seems to not be working with graphene 2.0 ``` @staticmethod def mutate(root, args, context, info): if not context.user.is_authenticated(): return CreateMessageMutation(status=403) message = args.get('message', '').strip() # Here we...
in tests there is no schema.py - this file is one level up.
add Django 2.0+ compatibility
Wow, this is an amazing resource for learning how to tie together react, django and graphql. Love it! Any chance you have ideas on how to add OAuth logins (eg:...
What do you suggest in order to handle permissions per object for queries and mutations? Like, for example, you implement a project management software where each user can participate in...
I uploaded denoised versions of the videos - hope you don't mind. Some parts are still noisy, but overall It's pretty decent. Thanks for the demo, you are an awesome...
Dear Martin, Thanks for this great tutorial. I'm trying to replicate this. It all works fine, except that at the point where I submit a query through apollo, the response...
Hey, thanks for sharing all this valuable information and knowledge, Django community is amazingly generous and this repo is a good example of that. I have filtered the noise in...
I've upgrade to graphene 2 and apollo client 2. The tests are also updated to use Graphene client in order to pass context.
after adding a list view of react [Add Apollo to React](https://github.com/mbrochh/django-graphql-apollo-react-demo#add-apollo-to-react) I have got this error Does somebody know how can I resolve this? ``` proxyConsole.js:56 Warning: Failed prop type:...