Created
April 5, 2021 19:37
-
-
Save alexanderhupfer/039c6a8125f9f0675230996ecd3c7f5b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import graphene | |
class Configuration(graphene.ObjectType): | |
#ID! definition to be ommitted, generated by node interface | |
enabled = graphene.Boolean() | |
value = graphene.Int() | |
class Meta: | |
interfaces = (graphene.relay.Node, ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment