Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions modules/API/pages/built-in-endpoints.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1307,6 +1307,13 @@ curl -X POST --data-binary @./work_at.csv "http://localhost:14240/restpp/ddl/poc
| Boolean value that indicates whether to return concise results of the data loading request. Concise results will only include the number of vertices and edges added or deleted, and will omit information such as the number of valid and invalid lines in the default response.
|===

[NOTE]
====
The `/ddl` endpoint does not use the `separator` or `eol` values defined in the GSQL loading job.

If the loading job defines non-default values for `separator` or `eol`, you must specify the corresponding `sep` and `eol` request parameters when calling the `/ddl` endpoint. Otherwise, the endpoint uses its own default values.
====

If there are special characters in your parameter values, the special characters should use https://www.w3schools.com/tags/ref_urlencode.asp[URL encoding]. To avoid confusion about whether you should you one or two backslashes, we do not support backslash escapes for the `eol` or `sep` parameter.

The maximum size of data you can upload via this endpoint is controlled by the xref:API:index.adoc#_request_body_size[`Nginx.ClientMaxBodySize`] configuration parameter (default is 200 MB).
Expand Down