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
i have a question concerning returning all nodes. In my DB,
g.V('node-2323').Out().Out().Out().All() returns 100 nodes, but g.V('node-2323').Out().Out().Out().GetLimit(2000) returns the actual number of 1287 nodes.
Why is the output of All() limited to 100?
I tried it in repl and through the HTTP API.
My storage backend is leveldb.
Thanks!
The text was updated successfully, but these errors were encountered:
Indeed, we limit the number of results returned by HTTP APIs so people don't end up listing the whole graph by accident. Setting the limit to -1 will solve your issue.
Description
Hi,
i have a question concerning returning all nodes. In my DB,
g.V('node-2323').Out().Out().Out().All()
returns 100 nodes, butg.V('node-2323').Out().Out().Out().GetLimit(2000)
returns the actual number of 1287 nodes.Why is the output of All() limited to 100?
I tried it in repl and through the HTTP API.
My storage backend is leveldb.
Thanks!
The text was updated successfully, but these errors were encountered: