Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOC-440 | Add interface examples for APIs and GUI (Concepts section) #648

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1384,6 +1384,11 @@ logJsonResponse(response);
```
````

If an endpoint requires the `_system` database as the context, the URL should be
set accordingly, e.g. `var url = "/_db/_system/_api/database";`. This ensures
that the request is issued correctly as the toolchain may process other examples
that change the database context simultaneously.

Unlike arangosh examples (`` ```js ``), requests and responses
need to be output explicitly by calling one of the following functions:

Expand Down
Loading