We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
redis.asyncio
Version: 4.2.2
Platform: Python 3.8.10 on Ubuntu 20.04
Description: the Graph module does not seem to support async yet. Here is an example which throws TypeError: 'coroutine' object is not subscriptable:
Graph
TypeError: 'coroutine' object is not subscriptable
import redis.asyncio as redis r = redis.Redis() graph = r.graph() query = ( 'MATCH (p:person)-[v:visited {purpose:"pleasure"}]->(c:country) ' "RETURN p, v, c" ) result = await graph.query(query)
The text was updated successfully, but these errors were encountered:
redis.async
Same is true for some of the commands in Search module, like FT.AGGREGATE
Search
FT.AGGREGATE
Sorry, something went wrong.
#2273 #2096
No branches or pull requests
Version: 4.2.2
Platform: Python 3.8.10 on Ubuntu 20.04
Description: the
Graph
module does not seem to support async yet. Here is an example which throwsTypeError: 'coroutine' object is not subscriptable
:The text was updated successfully, but these errors were encountered: