Skip to content
Merged
2 changes: 1 addition & 1 deletion site/content/amp/deployments/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ attached to your role. Read more about [roles and permissions](../security-and-a

## How to connect a driver to your deployment

[ArangoDB drivers](../../arangodb/3.12/develop/drivers/_index.md) allow you to use your AMP
[ArangoDB drivers](../../ecosystem/drivers/) allow you to use your AMP
deployment as a database system for your applications. Drivers act as interfaces
between different programming languages and ArangoDB, which enable you to
connect to and manipulate ArangoDB deployments from within compiled programs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ unique ID that is part of your AMP deployment endpoint URL.

## How to connect to your application

[ArangoDB drivers](../../arangodb/3.12/develop/drivers/_index.md), also called connectors, allow you to
[ArangoDB drivers](../../ecosystem/drivers/_index.md), also called connectors, allow you to
easily connect AMP deployments to your application.

1. Navigate to **Deployments** and click the **View** button to show the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ It communicates with the server via the HTTP API.

{{< tip >}}
The JavaScript API cannot be used in browsers, Node.js, or other JavaScript
environments. You can use the [arangojs driver](../drivers/nodejs.md) instead.
environments. You can use the [arangojs driver](../../develop/drivers/nodejs.md) instead.
Note that it has a different interface.
{{< /tip >}}

Expand Down
2 changes: 1 addition & 1 deletion site/content/arangodb/3.11/develop/drivers/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ language.
- [Tutorial](go.md#tutorial)
- Repository: [github.com/arangodb/go-driver](https://github.com/arangodb/go-driver/tree/master/v2)

## Node.js driver
## JavaScript driver

The [**ArangoJS driver**](javascript.md) lets you work with ArangoDB in Node.js, using
the JavaScript scripting language. You can also use it in web browsers.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ This library works with all the non-EOLed [ArangoDB versions](https://www.arango

There are several variants of this library, each one compatible with different Spark and Scala versions:

- `com.arangodb:arangodb-spark-datasource-3.3_2.12` (Spark 3.3, Scala 2.12)
- `com.arangodb:arangodb-spark-datasource-3.3_2.13` (Spark 3.3, Scala 2.13)
- `com.arangodb:arangodb-spark-datasource-3.4_2.12` (Spark 3.4, Scala 2.12) (compatible with Spark `3.4.2+`)
- `com.arangodb:arangodb-spark-datasource-3.4_2.13` (Spark 3.4, Scala 2.13) (compatible with Spark `3.4.2+`)
- `com.arangodb:arangodb-spark-datasource-3.5_2.12` (Spark 3.5, Scala 2.12)
Expand All @@ -39,6 +37,8 @@ The following variants are no longer supported:
- `com.arangodb:arangodb-spark-datasource-3.1_2.12` (Spark 3.1, Scala 2.12)
- `com.arangodb:arangodb-spark-datasource-3.2_2.12` (Spark 3.2, Scala 2.12)
- `com.arangodb:arangodb-spark-datasource-3.2_2.13` (Spark 3.2, Scala 2.13)
- `com.arangodb:arangodb-spark-datasource-3.3_2.12` (Spark 3.3, Scala 2.12)
- `com.arangodb:arangodb-spark-datasource-3.3_2.13` (Spark 3.3, Scala 2.13)

Since version `1.7.0`, due to [breaking changes](https://github.com/apache/spark/commit/ad29290a02fb94a958fd21e301100338c9f5b82a#diff-b25c8acff88c1b4850c6642e80845aac4fb882c664795c3b0aa058e37ed732a0L42-R52)
in Spark `3.4.2`, `arangodb-spark-datasource-3.4` is not compatible anymore with Spark versions `3.4.0` and `3.4.1`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ It communicates with the server via the HTTP API.

{{< tip >}}
The JavaScript API cannot be used in browsers, Node.js, or other JavaScript
environments. You can use the [arangojs driver](../drivers/javascript.md) instead.
environments. You can use the [arangojs driver](../../develop/drivers/javascript.md) instead.
Note that it has a different interface.
{{< /tip >}}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ Only [`HAS()`](#has) can differentiate between an attribute being absent and hav
a stored `null` value.

An empty object `{}` will match all documents. Be careful not to ask for all
documents accidentally. For example, the [arangojs](../../develop/drivers/javascript.md) driver
documents accidentally. For example, the [arangojs](../../../../ecosystem/drivers/javascript.md) driver
skips attributes with a value of `undefined`, turning `{attr: undefined}` into `{}`.

{{< info >}}
Expand Down
4 changes: 2 additions & 2 deletions site/content/arangodb/3.12/aql/how-to-invoke-aql/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ You can execute AQL queries using different interfaces:
- The web interface
- The `db` object of the JavaScript API (either in arangosh or in a Foxx service)
- The raw HTTP REST API
- Through a [driver](../../develop/drivers/_index.md) or
[integration](../../develop/integrations/_index.md) as an abstraction over the
- Through a [driver](../../../../ecosystem/drivers/_index.md) or
[integration](../../../../ecosystem/integrations/_index.md) as an abstraction over the
HTTP REST API

There are always calls to the server's API under the hood, but the web interface,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ You can find the source code repository of the module on GitHub:
Once you have installed the `arango-datasets` package, you can use it to
download and import datasets into your deployment with `arango_datasets.Datasets`.

The `Datasets` constructor requires a valid [python-arango](../../develop/drivers/python.md)
The `Datasets` constructor requires a valid [python-arango](../../../../ecosystem/drivers/python.md)
database object as input. It defines the target deployment, database, and
credentials to load a dataset.

Expand Down
Loading