mirror of https://gitee.com/bigwinds/arangodb
Fix more dead links.
This commit is contained in:
parent
8a1ca88fc5
commit
1b826e9292
|
@ -7,7 +7,7 @@ all databases.
|
|||
|
||||
You should create a database for your application together with a
|
||||
user that has access rights to this database. See
|
||||
[Managing Users](../Administration/ManagingUsers/index.html).
|
||||
[Managing Users](../Administration/ManagingUsers.md).
|
||||
|
||||
Use the *arangosh* to create a new database and user.
|
||||
|
||||
|
|
|
@ -45,7 +45,7 @@ so if you delete documents from your vertex collections directly, the edges poin
|
|||
|
||||
!SUBSECTION Anonymous graphs
|
||||
Sometimes you may not need all the powers of named graphs, but some of its bits may be valuable to you.
|
||||
You [may use AQL Graph Functions](../../AQL/Graphs/Functions.html) that are a little deeper explained in the [traversals](Traversals/README.md) and the [Working with Edges](Edges/README.md) chapter.
|
||||
You may use anonymous graphs in the [traversals](Traversals/README.md) and in the [Working with Edges](Edges/README.md) chapter.
|
||||
Anonymous graphs don't have *edge definitions* describing which *vertex collection* is connected by which *edge collection*. The graph model has to be maintained in the client side code.
|
||||
This gives you more freedom than the strict *named graphs*.
|
||||
|
||||
|
|
|
@ -62,7 +62,7 @@ is set to *true*.
|
|||
|
||||
Each plan in the result is a JSON object with the following attributes:
|
||||
- *nodes*: the array of execution nodes of the plan. The array of available node types
|
||||
can be found [here](../../AQL/Optimizer.html)
|
||||
can be found [here](../../AQL/ExecutionAndPerformance/Optimizer.html)
|
||||
|
||||
- *estimatedCost*: the total estimated cost for the plan. If there are multiple
|
||||
plans, the optimizer will choose the plan with the lowest total cost.
|
||||
|
@ -70,7 +70,7 @@ Each plan in the result is a JSON object with the following attributes:
|
|||
- *collections*: an array of collections used in the query
|
||||
|
||||
- *rules*: an array of rules the optimizer applied. An overview of the
|
||||
available rules can be found [here](../../AQL/Optimizer.html)
|
||||
available rules can be found [here](../../AQL/ExecutionAndPerformance/Optimizer.html)
|
||||
|
||||
- *variables*: array of variables used in the query (note: this may contain
|
||||
internal variables created by the optimizer)
|
||||
|
|
Loading…
Reference in New Issue