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
Hi,
I have a query like this:
EXPLAIN ANALYZE SELECT * FROM cypher('graph_name', $$ MATCH (V:Nodetype) WHERE id(V)=1036234240758848 RETURN V $$) as (V agtype);
it costs 1 second.
Parallel Seq Scan on "Nodetype" "V_2" (cost=0.00..44406.69 rows=1758 width=321) (actual time=1225.284..1225.284 rows=0 loops=3) Filter: (age_id(_agtype_build_vertex(id, _label_name('78689'::oid, id), properties)) = '1036234240758848'::agtype) Rows Removed by Filter: 281228 Planning Time: 0.404 ms Execution Time: 1241.129 ms
What can i do to make this query fast?
Thanks.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I have a query like this:
it costs 1 second.
What can i do to make this query fast?
Thanks.
The text was updated successfully, but these errors were encountered: