Skip to content

Instantly share code, notes, and snippets.

View 5uh417's full-sized avatar

smirza 5uh417

  • Bangalore
View GitHub Profile
@5uh417
5uh417 / keybase.md
Last active September 16, 2019 16:55

Keybase proof

I hereby claim:

  • I am sm087 on github.
  • I am smirza (https://keybase.io/smirza) on keybase.
  • I have a public key ASBKldght-oWFtLm2Afk5STavE8CAfSr3F735bUXQdSA2Qo

To claim this, I am signing this object:

@5uh417
5uh417 / schema.py
Created August 28, 2019 02:38
Introduction to GraphQL using Python
import graphene
import json
class Query(graphene.ObjectType):
user = graphene.String()
is_admin = graphene.Boolean()
def resolve_user(self, info):
return "Benjamin Button"