Grance

A Brand
New GraphQL Library
Based on Pydantic

pip install grance

Straightfoward to Define GraphQL field

import grance

app = grance.Grance()

@app.query("hello")
def hello() -> str:
    return "world"

print(app.execute("{ hello }"))