| Nov | DEC | Jan |
| 21 | ||
| 2019 | 2020 | 2021 |
COLLECTED BY
Collection: Arquivo.pt: the Portuguese web-archive
import graphene
class Query(graphene.ObjectType):
hello = graphene.String()
def resolve_hello(self, info):
return 'World'
schema = graphene.Schema(query=Query)
schema.execute('''
query {
hello
}
''')
Pluggable