You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@age.apache.org by jo...@apache.org on 2021/10/20 22:08:21 UTC

[incubator-age-website] branch asf-site updated: Fixed Links in 'The AGE Cypher Query Format'

This is an automated email from the ASF dual-hosted git repository.

joshinnis pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/incubator-age-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 1673c2e  Fixed Links in 'The AGE Cypher Query Format'
1673c2e is described below

commit 1673c2ee5c867b97256f673e210328147d2080f4
Author: Josh Innis <Jo...@gmail.com>
AuthorDate: Wed Oct 20 15:07:53 2021 -0700

    Fixed Links in 'The AGE Cypher Query Format'
---
 docs/_sources/intro/cypher.md.txt | 20 +++-----------------
 docs/intro/cypher.html            |  8 +++-----
 docs/searchindex.js               |  2 +-
 docs/src/docs/intro/cypher.md     | 20 +++-----------------
 4 files changed, 10 insertions(+), 40 deletions(-)

diff --git a/docs/_sources/intro/cypher.md.txt b/docs/_sources/intro/cypher.md.txt
index 622408b..11d387a 100644
--- a/docs/_sources/intro/cypher.md.txt
+++ b/docs/_sources/intro/cypher.md.txt
@@ -42,23 +42,15 @@ Arguments:
   <tr>
    <td>parameters
    </td>
-   <td>An optional map of parameters used for stored procedure. Default is NULL. See 
-
-
-<a href="#heading=h.8ys790864f8o">Stored Procedures</a> for details 
+   <td>An optional map of parameters used for Prepared Statements. Default is NULL. 
    </td>
   </tr>
 </table>
 
 
 Considerations:
-
-
-
 * If a Cypher query does not return results, a record definition still needs to be defined. 
-
-
-[Example](#heading=h.vo9azwq6syoh).
+* The parameter map can only be used with [Prepared Statements](../advanced/prepared_statements). An error will be thrown otherwise.
 
 Query:
 
@@ -69,15 +61,9 @@ SELECT * FROM cypher('graph_name', $$
 $$) AS (result1 agtype, result2 agtype);
 ```
 
-
-
 ## Cypher in an Expression
 
-Cypher may not be used as part of an expression, use a subquery instead. See 
-
-
-
-[Advanced Cypher Queries](#heading=h.2hqh54e4zcgm) for information about how to use Cypher queries with Expressions
+Cypher may not be used as part of an expression, use a subquery instead. See [Advanced Cypher Queries](../advanced/advanced.html#cypher-in-sql-expressions) for information about how to use Cypher queries with Expressions
 
 
 ## SELECT Clause
diff --git a/docs/intro/cypher.html b/docs/intro/cypher.html
index c860092..61739e2 100644
--- a/docs/intro/cypher.html
+++ b/docs/intro/cypher.html
@@ -245,16 +245,15 @@
   <tr>
    <td>parameters
    </td>
-   <td>An optional map of parameters used for stored procedure. Default is NULL. See 
-<p><a href="#heading=h.8ys790864f8o">Stored Procedures</a> for details</p>
+   <td>An optional map of parameters used for Prepared Statements. Default is NULL. 
    </td>
   </tr>
 </table>
 <p>Considerations:</p>
 <ul class="simple">
 <li><p>If a Cypher query does not return results, a record definition still needs to be defined.</p></li>
+<li><p>The parameter map can only be used with <a class="reference internal" href="../advanced/prepared_statements.html"><span class="doc std std-doc">Prepared Statements</span></a>. An error will be thrown otherwise.</p></li>
 </ul>
-<p><a class="reference external" href="#heading=h.vo9azwq6syoh">Example</a>.</p>
 <p>Query:</p>
 <div class="highlight-default notranslate"><div class="highlight"><pre><span></span>SELECT * FROM cypher(&#39;graph_name&#39;, $$ 
 /* Cypher Query Here */ 
@@ -264,8 +263,7 @@ $$) AS (result1 agtype, result2 agtype);
 </div>
 <div class="section" id="cypher-in-an-expression">
 <h2>Cypher in an Expression<a class="headerlink" href="#cypher-in-an-expression" title="Permalink to this headline">¶</a></h2>
-<p>Cypher may not be used as part of an expression, use a subquery instead. See</p>
-<p><a class="reference external" href="#heading=h.2hqh54e4zcgm">Advanced Cypher Queries</a> for information about how to use Cypher queries with Expressions</p>
+<p>Cypher may not be used as part of an expression, use a subquery instead. See <a class="reference external" href="../advanced/advanced.html#cypher-in-sql-expressions">Advanced Cypher Queries</a> for information about how to use Cypher queries with Expressions</p>
 </div>
 <div class="section" id="select-clause">
 <h2>SELECT Clause<a class="headerlink" href="#select-clause" title="Permalink to this headline">¶</a></h2>
diff --git a/docs/searchindex.js b/docs/searchindex.js
index b1be893..ffda64d 100644
--- a/docs/searchindex.js
+++ b/docs/searchindex.js
@@ -1 +1 @@
-Search.setIndex({docnames:["advanced/advanced","advanced/advanced_overview","advanced/plpgsql","advanced/prepared_statements","clauses/create","clauses/delete","clauses/limit","clauses/match","clauses/order_by","clauses/remove","clauses/return","clauses/set","clauses/skip","clauses/with","functions/aggregate_functions","functions/list_functions","functions/logarithmic_functions","functions/numeric_functions","functions/predicate_functions","functions/scalar_functions","functions/string_f [...]
\ No newline at end of file
+Search.setIndex({docnames:["advanced/advanced","advanced/advanced_overview","advanced/plpgsql","advanced/prepared_statements","clauses/create","clauses/delete","clauses/limit","clauses/match","clauses/order_by","clauses/remove","clauses/return","clauses/set","clauses/skip","clauses/with","functions/aggregate_functions","functions/list_functions","functions/logarithmic_functions","functions/numeric_functions","functions/predicate_functions","functions/scalar_functions","functions/string_f [...]
\ No newline at end of file
diff --git a/docs/src/docs/intro/cypher.md b/docs/src/docs/intro/cypher.md
index 622408b..11d387a 100644
--- a/docs/src/docs/intro/cypher.md
+++ b/docs/src/docs/intro/cypher.md
@@ -42,23 +42,15 @@ Arguments:
   <tr>
    <td>parameters
    </td>
-   <td>An optional map of parameters used for stored procedure. Default is NULL. See 
-
-
-<a href="#heading=h.8ys790864f8o">Stored Procedures</a> for details 
+   <td>An optional map of parameters used for Prepared Statements. Default is NULL. 
    </td>
   </tr>
 </table>
 
 
 Considerations:
-
-
-
 * If a Cypher query does not return results, a record definition still needs to be defined. 
-
-
-[Example](#heading=h.vo9azwq6syoh).
+* The parameter map can only be used with [Prepared Statements](../advanced/prepared_statements). An error will be thrown otherwise.
 
 Query:
 
@@ -69,15 +61,9 @@ SELECT * FROM cypher('graph_name', $$
 $$) AS (result1 agtype, result2 agtype);
 ```
 
-
-
 ## Cypher in an Expression
 
-Cypher may not be used as part of an expression, use a subquery instead. See 
-
-
-
-[Advanced Cypher Queries](#heading=h.2hqh54e4zcgm) for information about how to use Cypher queries with Expressions
+Cypher may not be used as part of an expression, use a subquery instead. See [Advanced Cypher Queries](../advanced/advanced.html#cypher-in-sql-expressions) for information about how to use Cypher queries with Expressions
 
 
 ## SELECT Clause