diff --git a/modules/ROOT/content-nav.adoc b/modules/ROOT/content-nav.adoc index 5e047d834..25b51e1ee 100644 --- a/modules/ROOT/content-nav.adoc +++ b/modules/ROOT/content-nav.adoc @@ -112,6 +112,7 @@ Generic Start * Connecting applications ** xref:connecting-applications/overview.adoc[Drivers and libraries] +** xref:connecting-applications/query-api.adoc[Using Query API] * Neo4j Connectors ** xref:connectors/spark.adoc[Neo4j Connector for Apache Spark] diff --git a/modules/ROOT/pages/connecting-applications/query-api.adoc b/modules/ROOT/pages/connecting-applications/query-api.adoc new file mode 100644 index 000000000..5a2d48a09 --- /dev/null +++ b/modules/ROOT/pages/connecting-applications/query-api.adoc @@ -0,0 +1,15 @@ +[[aura-query-api-tutorial]] += Using the Query API with Aura +:description: Use the Query API with Aura to execute Cypher statements against a Neo4j server through HTTPS requests. + +== Introduction + +The Query API enables interaction with an Aura database using Cypher via HTTPS. + +For more information, see the link:https://neo4j.com/docs/query-api/current/[Query API documentation] but note that: + +* For Aura instances, the host follows the format `.databases.neo4j.io` + +* The Query API documentation mainly refers to self-managed instances that use port `7474`, whereas Aura supports HTTPS only, which defaults to port `443` + +* As HTTPS implies port `443` in the request, you do not need to include the port in the URL. \ No newline at end of file