You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
to run an ASGI uvicorn server with flask (though it doesn't work if i just type flask run either), I execute the graphql command
{
allEmployees {
edges {
node {
id
name
department {
name
}
}
}
}
}
And get a bunch of errors that say: Received incompatible instance \"<coroutine object get_batch_resolver.<locals>.resolve at 0x1080d6840>
I looked deeper into it and it looks like the batch_load_fn in the batching.py file might not be awaited. Is this an error on the flask end? My code itself is exactly the same as the tutorials.