Asyncio GraphQL client
from asynql import GQLModel
class Address(GQLModel):
__one__ = 'address'
__many__ = 'addresses'
lat: float
lon: float
city: str
line: strWe need __one__ and __many__ to be specified to customize query for one item or for many items.
