Python library for creating GraphQL schemas with type safety
Thin layer of graphic data types
graphene$ python -c "import graphene; class Query(graphene.ObjectType): hello = graphene.String(); schema = graphene.Schema(query=Query)"$ python -c "import graphene; class User(graphene.ObjectType): name = graphene.String(); email = graphene.String()"$ python -c "import graphene; schema = graphene.Schema(query=graphene.ObjectType); result = schema.execute('{__typename}')"