This is an automated email from the ASF dual-hosted git repository.
mtaha 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 b4441b1a Fix typo in prepared_statements.md (#105)
b4441b1a is described below
commit b4441b1a901b910f34886e469ba1b4e0d43f8ee4
Author: Maytch <[email protected]>
AuthorDate: Sun Sep 7 13:25:46 2025 +0100
Fix typo in prepared_statements.md (#105)
Change cypher_prepared_statement to cypher_stored_procedure in EXECUTE
command.
---
docs/advanced/prepared_statements.md | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/docs/advanced/prepared_statements.md
b/docs/advanced/prepared_statements.md
index bfc39c46..6c3943a4 100644
--- a/docs/advanced/prepared_statements.md
+++ b/docs/advanced/prepared_statements.md
@@ -29,8 +29,7 @@ AS (v agtype);
When executing the prepared statement, place an agtype map with the parameter
values where the Postgres Parameter in the Cypher function call is. The value
must be an agtype map or an error will be thrown. Exclude the `'$'` for
parameter names.
-
```postgresql
-EXECUTE cypher_prepared_statement('{"name": "Tobias"}');
+EXECUTE cypher_stored_procedure('{"name": "Tobias"}');
```