You're browsing snippets anonymously. Log in or create an account to save and manage your own snippets.

Public Snippets
with tags: validation
Showing 1 snippet
Django graphene mutation input validation
import graphene

class ScratchpadMutation(graphene.relay.ClientIDMutation):
    class Input:
        created_by = graphene.String(required=True)
        foobar = graphene.String()

    test = g...
By xtream1101 Updated 2025-02-06 14:13
Showing 1 snippet