This is an automated email from the ASF dual-hosted git repository.
jgemignani pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/age-website.git
The following commit(s) were added to refs/heads/master by this push:
new c8b76512 Fixed example query typo in predicate_functions.md (#160)
c8b76512 is described below
commit c8b76512a0241e147fc5ac609341b34e96a2230b
Author: Abdullah Bin Omer Zia
<[email protected]>
AuthorDate: Tue May 30 22:11:23 2023 +0500
Fixed example query typo in predicate_functions.md (#160)
---
docs/functions/predicate_functions.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/functions/predicate_functions.md
b/docs/functions/predicate_functions.md
index a9c7ace5..980347c9 100644
--- a/docs/functions/predicate_functions.md
+++ b/docs/functions/predicate_functions.md
@@ -82,7 +82,7 @@ EXISTS(path) returns true if for the given path, there
already exists the given
SELECT *
FROM cypher('graph_name', $$
MATCH (n)
- WHERE exists(n)-[]-(name: 'Willem Defoe')
+ WHERE exists((n)-[]-({name: 'Willem Defoe'}))
RETURN n.full_name
$$) as (full_name agtype);
```