Jason Kraus

Results 73 comments of Jason Kraus

I think `graphene-django-optimizer` is something we might want to mention in the docs.

I think this is a solid request, I'd help anyone who wants to write a PR.

How would the custom fields work with the internal form logic of validating and saving? Currently the form based mutations punt these operations to the form itself, if we're adding...

Would be fixed with: https://github.com/graphql-python/graphene/pull/1300

How to do it with `graphene_subscriptions`: https://gist.github.com/zbyte64/4730f49639335078857c3559ce105e01

Also interested in this feature so I took a peak at the current state of things. DRF defines a class for generating the coreapi schema: `rest_framework.schemas.SchemaGenerator` . It seems this...

Posting my solution, which is to implement a custom `get_swagger_view` that responds to `application/json`: ``` from rest_framework import exceptions from rest_framework.permissions import AllowAny from rest_framework.renderers import CoreJSONRenderer from rest_framework.response import...

Was looking for a "fire and leave" pattern, I have a menu item triggering a modal. This runs into the same problem here, the hook will cleanup, ie close the...

Let me pile on another data validation question: How do we validate data when syncing with another peer? In regards to the original question: Someday js-ipfs will be mature enough...

I had a similar issue when using `With`, I wanted `vars` to be enriched: ```yaml rows: !Loop over: !Var subareaRows as: row template: !Merge - context: !Var parentContext color: !Lookup...