with the one in\n/// the body, provided there is such a document and no precondition is\n/// violated.\n///\n/// If the *If-Match* header is specified and the revision of the\n/// document in the database is unequal to the given revision, the\n/// precondition is violated.\n///\n/// If *If-Match* is not given and *ignoreRevs* is *false* and there\n/// is a *_rev* attribute in the body and its value does not match\n/// the revision of the document in the database, the precondition is\n/// violated.\n///\n/// If a precondition is violated, an *HTTP 412* is returned.\n///\n/// If the document exists and can be updated, then an *HTTP 201* or\n/// an *HTTP 202* is returned (depending on *waitForSync*, see below),\n/// the *ETag* header field contains the new revision of the document\n/// and the *Location* header contains a complete URL under which the\n/// document can be queried.\n///\n/// Optionally, the query parameter *waitForSync* can be used to force\n/// synchronization of the document replacement operation to disk even in case\n/// that the *waitForSync* flag had been disabled for the entire collection.\n/// Thus, the *waitForSync* query parameter can be used to force synchronization\n/// of just specific operations. To use this, set the *waitForSync* parameter\n/// to *true*. If the *waitForSync* parameter is not specified or set to\n/// *false*, then the collection's default *waitForSync* behavior is\n/// applied. The *waitForSync* query parameter cannot be used to disable\n/// synchronization for collections that have a default *waitForSync* value\n/// of *true*.\n///\n/// The body of the response contains a JSON object with the information\n/// about the handle and the revision. The attribute *_id* contains the\n/// known *document-handle* of the updated document, *_key* contains the\n/// key which uniquely identifies a document in a given collection, and\n/// the attribute *_rev* contains the new document revision.\n///\n/// If the query parameter *returnOld* is *true*, then\n/// the complete previous revision of the document\n/// is returned under the *old* attribute in the result.\n///\n/// If the query parameter *returnNew* is *true*, then\n/// the complete new document is returned under\n/// the *new* attribute in the result.\n///\n/// If the document does not exist, then a *HTTP 404* is returned and the\n/// body of the response contains an error document.\n///\n\nExample: ///\n/// Using a document handle\n///
shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/document/products/739842770 <<EOF\n{\"Hello\": \"you\"}\nEOF\n\nHTTP/1.1 202 Accepted\ncontent-type: application/json; charset=utf-8\netag: \"740170450\"\nlocation: /_db/_system/_api/document/products/739842770\n\n{ \n \"error\" : false, \n \"_id\" : \"products/739842770\", \n \"_rev\" : \"740170450\", \n \"_key\" : \"739842770\" \n}\n
\nExample: ///\n/// Unknown document handle\n///
shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/document/products/744037074 <<EOF\n{}\nEOF\n\nHTTP/1.1 404 Not Found\ncontent-type: application/json; charset=utf-8\n\n{ \n \"code\" : 404, \n \"error\" : true, \n \"errorMessage\" : \"document not found\", \n \"errorNum\" : 1202 \n}\n
\nExample: ///\n/// Produce a revision conflict\n///
shell> curl -X PUT --header 'If-Match: \"741022418\"' --data-binary @- --dump - http://localhost:8529/_api/document/products/740694738 <<EOF\n{\"other\":\"content\"}\nEOF\n\nHTTP/1.1 412 Precondition Failed\ncontent-type: application/json; charset=utf-8\netag: \"740694738\"\n\n{ \n \"error\" : true, \n \"code\" : 412, \n \"errorNum\" : 1200, \n \"errorMessage\" : \"precondition failed\", \n \"_id\" : \"products/740694738\", \n \"_rev\" : \"740694738\", \n \"_key\" : \"740694738\" \n}\n
\n/// \n////////////////////////////////////////////////////////////////////////////////\n",
"parameters": [
{
- "description": "/// A JSON representation of the new document.\n///\n",
+ "description": "/// A JSON representation of a single document.\n///\n",
"in": "body",
"name": "Json Post Body",
"required": true,
@@ -3828,7 +4061,7 @@
"x-description-offset": 0
},
{
- "description": "/// The handle of the document.\n///\n",
+ "description": "/// This URL parameter must be a document handle.\n///\n",
"format": "string",
"in": "path",
"name": "document-handle",
@@ -3843,18 +4076,25 @@
"type": "boolean"
},
{
- "description": "/// You can conditionally replace a document based on a target revision id by\n/// using the *rev* query parameter.\n///\n",
+ "description": "/// By default, or if this is set to *true*, the *_rev* attributes in \n/// the given document is ignored. If this is set to *false*, then\n/// the *_rev* attribute given in the body document is taken as a\n/// precondition. The document is only replaced if the current revision\n/// is the one specified.\n///\n",
"in": "query",
- "name": "rev",
+ "name": "ignoreRevs",
"required": false,
- "type": "string"
+ "type": "boolean"
},
{
- "description": "/// To control the update behavior in case there is a revision mismatch, you\n/// can use the *policy* parameter (see below).\n///\n",
+ "description": "/// Return additionally the complete previous revision of the changed \n/// document under the attribute *old* in the result.\n///\n",
"in": "query",
- "name": "policy",
+ "name": "returnOld",
"required": false,
- "type": "string"
+ "type": "boolean"
+ },
+ {
+ "description": "/// Return additionally the complete new document under the attribute *new*\n/// in the result.\n///\n",
+ "in": "query",
+ "name": "returnNew",
+ "required": false,
+ "type": "boolean"
},
{
"description": "/// You can conditionally replace a document based on a target revision id by\n/// using the *if-match* HTTP header.\n///\n",
@@ -3865,19 +4105,19 @@
],
"responses": {
"201": {
- "description": "/// is returned if the document was replaced successfully and *waitForSync* was\n/// *true*.\n///\n"
+ "description": "/// is returned if the document was replaced successfully and\n/// *waitForSync* was *true*.\n///\n"
},
"202": {
- "description": "/// is returned if the document was replaced successfully and *waitForSync* was\n/// *false*.\n///\n"
+ "description": "/// is returned if the document was replaced successfully and\n/// *waitForSync* was *false*.\n///\n"
},
"400": {
- "description": "/// is returned if the body does not contain a valid JSON representation of a\n/// document. The response body contains an error document in this case.\n///\n"
+ "description": "/// is returned if the body does not contain a valid JSON representation\n/// of a document. The response body contains\n/// an error document in this case.\n///\n"
},
"404": {
- "description": "/// is returned if the collection or the document was not found\n///\n"
+ "description": "/// is returned if the collection or the document was not found.\n///\n"
},
"412": {
- "description": "/// is returned if a \"If-Match\" header or *rev* is given and the found\n/// document has a different version. The response will also contain the found\n/// document's current revision in the *_rev* attribute. Additionally, the\n/// attributes *_id* and *_key* will be returned.\n///\n"
+ "description": "/// is returned if the precondition was violated. The response will\n/// also contain the found documents' current revisions in the *_rev*\n/// attributes. Additionally, the attributes *_id* and *_key* will be\n/// returned.\n///\n"
}
},
"summary": "Replace document",
@@ -3885,7 +4125,7 @@
"Documents"
],
"x-examples": [],
- "x-filename": "Documents - ./Documentation/DocuBlocks/Rest//Documents/REST_DOCUMENT_CREATE.md, ./Documentation/DocuBlocks/Rest//Documents/REST_DOCUMENT_READ_ALL.md, ./Documentation/DocuBlocks/Rest//Documents/REST_DOCUMENT_DELETE.md, ./Documentation/DocuBlocks/Rest//Documents/REST_DOCUMENT_READ.md, ./Documentation/DocuBlocks/Rest//Documents/REST_DOCUMENT_READ_HEAD.md, ./Documentation/DocuBlocks/Rest//Documents/REST_DOCUMENT_UPDATE.md, ./Documentation/DocuBlocks/Rest//Documents/REST_DOCUMENT_REPLACE.md"
+ "x-filename": "Documents - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Documents/REST_DOCUMENT_UPDATE.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Documents/REST_DOCUMENT_DELETE_MULTI.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Documents/REST_DOCUMENT_READ.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Documents/REST_DOCUMENT_READ_HEAD.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Documents/REST_DOCUMENT_REPLACE.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Documents/REST_DOCUMENT_UPDATE_MULTI.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Documents/REST_DOCUMENT_REPLACE_MULTI.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Documents/REST_DOCUMENT_READ_ALL.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Documents/REST_DOCUMENT_DELETE.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Documents/REST_DOCUMENT_CREATE.md"
}
},
"/_api/edge": {
@@ -3913,7 +4153,7 @@
"Graph edges"
],
"x-examples": [],
- "x-filename": "Graph edges - ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_UPDATES.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_DELETE.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READ.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READINOUTBOUND.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_REPLACE.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READ_HEAD.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_CREATE.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READ_ALL.md"
+ "x-filename": "Graph edges - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_UPDATES.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READ_HEAD.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_DELETE.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READ_ALL.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_CREATE.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READ.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_REPLACE.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READINOUTBOUND.md"
},
"post": {
"description": "\nfree style json body\n\n\n\n/// Creates a new edge document in the collection named *collection*. A JSON\n/// representation of the document must be passed as the body of the POST\n/// request.\n///\n/// The *from* and *to* handles are immutable once the edge has been created.\n///\n/// In all other respects the method works like *POST /document*.\n///\n\nExample: ///\n/// Create an edge and read it back:\n///
shell> curl -X POST --data-binary @- --dump - http://localhost:8529/_api/edge/?collection=edges&from=vertices/1&to=vertices/2 <<EOF\n{ \n \"name\" : \"Emil\" \n}\nEOF\n\nHTTP/1.1 202 Accepted\ncontent-type: application/json; charset=utf-8\netag: \"746920658\"\nlocation: /_db/_system/_api/edge/edges/746920658\n\n{ \n \"error\" : false, \n \"_id\" : \"edges/746920658\", \n \"_rev\" : \"746920658\", \n \"_key\" : \"746920658\" \n}\nshell> curl --dump - http://localhost:8529/_api/edge/edges/746920658\n\nHTTP/1.1 200 OK\ncontent-type: application/json; charset=utf-8\netag: \"746920658\"\n\n{ \n \"name\" : \"Emil\", \n \"_id\" : \"edges/746920658\", \n \"_rev\" : \"746920658\", \n \"_key\" : \"746920658\", \n \"_from\" : \"vertices/1\", \n \"_to\" : \"vertices/2\" \n}\n
\n/// \n///////////////////////////////////////////////////////////////////////////////\n",
@@ -3984,7 +4224,7 @@
"Graph edges"
],
"x-examples": [],
- "x-filename": "Graph edges - ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_UPDATES.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_DELETE.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READ.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READINOUTBOUND.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_REPLACE.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READ_HEAD.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_CREATE.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READ_ALL.md"
+ "x-filename": "Graph edges - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_UPDATES.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READ_HEAD.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_DELETE.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READ_ALL.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_CREATE.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READ.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_REPLACE.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READINOUTBOUND.md"
}
},
"/_api/edge/{document-handle}": {
@@ -4046,7 +4286,7 @@
"Graph edges"
],
"x-examples": [],
- "x-filename": "Graph edges - ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_UPDATES.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_DELETE.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READ.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READINOUTBOUND.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_REPLACE.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READ_HEAD.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_CREATE.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READ_ALL.md"
+ "x-filename": "Graph edges - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_UPDATES.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READ_HEAD.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_DELETE.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READ_ALL.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_CREATE.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READ.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_REPLACE.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READINOUTBOUND.md"
},
"get": {
"description": "\n\n/// Returns the edge identified by *document-handle*. The returned\n/// edge contains a few special attributes:\n///\n/// - *_id* contains the document handle\n///\n/// - *_rev* contains the revision\n///\n/// - *_from* and *to* contain the document handles of the connected\n/// vertex documents\n///\n",
@@ -4091,7 +4331,7 @@
"Graph edges"
],
"x-examples": [],
- "x-filename": "Graph edges - ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_UPDATES.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_DELETE.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READ.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READINOUTBOUND.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_REPLACE.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READ_HEAD.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_CREATE.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READ_ALL.md"
+ "x-filename": "Graph edges - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_UPDATES.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READ_HEAD.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_DELETE.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READ_ALL.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_CREATE.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READ.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_REPLACE.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READINOUTBOUND.md"
},
"head": {
"description": "\n\n/// Like *GET*, but only returns the header fields and not the body. You\n/// can use this call to get the current revision of an edge document or check if\n/// it was deleted.\n///\n",
@@ -4143,7 +4383,7 @@
"Graph edges"
],
"x-examples": [],
- "x-filename": "Graph edges - ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_UPDATES.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_DELETE.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READ.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READINOUTBOUND.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_REPLACE.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READ_HEAD.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_CREATE.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READ_ALL.md"
+ "x-filename": "Graph edges - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_UPDATES.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READ_HEAD.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_DELETE.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READ_ALL.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_CREATE.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READ.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_REPLACE.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READINOUTBOUND.md"
},
"patch": {
"description": "\nfree style json body\n\n\n\n/// Partially updates the edge document identified by *document-handle*.\n/// The body of the request must contain a JSON document with the attributes\n/// to patch (the patch document). All attributes from the patch document will\n/// be added to the existing edge document if they do not yet exist, and overwritten\n/// in the existing edge document if they do exist there.\n///\n/// Setting an attribute value to *null* in the patch document will cause a\n/// value of *null* be saved for the attribute by default.\n///\n/// **Note**: Internal attributes such as *_key*, *_from* and *_to* are immutable\n/// once set and cannot be updated.\n///\n/// Optionally, the query parameter *waitForSync* can be used to force\n/// synchronization of the edge document update operation to disk even in case\n/// that the *waitForSync* flag had been disabled for the entire collection.\n/// Thus, the *waitForSync* query parameter can be used to force synchronization\n/// of just specific operations. To use this, set the *waitForSync* parameter\n/// to *true*. If the *waitForSync* parameter is not specified or set to\n/// *false*, then the collection's default *waitForSync* behavior is\n/// applied. The *waitForSync* query parameter cannot be used to disable\n/// synchronization for collections that have a default *waitForSync* value\n/// of *true*.\n///\n/// The body of the response contains a JSON object with the information about\n/// the handle and the revision. The attribute *_id* contains the known\n/// *document-handle* of the updated edge document, *_key* contains the key which \n/// uniquely identifies a document in a given collection, and the attribute *_rev*\n/// contains the new document revision.\n///\n/// If the edge document does not exist, then a *HTTP 404* is returned and the\n/// body of the response contains an error document.\n///\n/// You can conditionally update an edge document based on a target revision id by\n/// using either the *rev* query parameter or the *if-match* HTTP header.\n/// To control the update behavior in case there is a revision mismatch, you\n/// can use the *policy* parameter. This is the same as when replacing\n/// edge documents (see replacing documents for details).\n///\n",
@@ -4231,7 +4471,7 @@
"Graph edges"
],
"x-examples": [],
- "x-filename": "Graph edges - ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_UPDATES.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_DELETE.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READ.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READINOUTBOUND.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_REPLACE.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READ_HEAD.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_CREATE.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READ_ALL.md"
+ "x-filename": "Graph edges - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_UPDATES.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READ_HEAD.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_DELETE.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READ_ALL.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_CREATE.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READ.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_REPLACE.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READINOUTBOUND.md"
},
"put": {
"description": "\nfree style json body\n\n\n\n/// Completely updates (i.e. replaces) the edge document identified by *document-handle*.\n/// If the edge document exists and can be updated, then a *HTTP 201* is returned\n/// and the \"ETag\" header field contains the new revision of the edge document.\n///\n/// If the new edge document passed in the body of the request contains the\n/// *document-handle* in the attribute *_id* and the revision in *_rev*,\n/// these attributes will be ignored. Only the URI and the \"ETag\" header are\n/// relevant in order to avoid confusion when using proxies. \n/// **Note**: The attributes\n/// *_from* and *_to* of an edge are immutable and cannot be updated either.\n///\n/// Optionally, the query parameter *waitForSync* can be used to force\n/// synchronization of the edge document replacement operation to disk even in case\n/// that the *waitForSync* flag had been disabled for the entire collection.\n/// Thus, the *waitForSync* query parameter can be used to force synchronization\n/// of just specific operations. To use this, set the *waitForSync* parameter\n/// to *true*. If the *waitForSync* parameter is not specified or set to\n/// *false*, then the collection's default *waitForSync* behavior is\n/// applied. The *waitForSync* query parameter cannot be used to disable\n/// synchronization for collections that have a default *waitForSync* value\n/// of *true*.\n///\n/// The body of the response contains a JSON object with the information about\n/// the handle and the revision. The attribute *_id* contains the known\n/// *document-handle* of the updated edge document, *_key* contains the key which \n/// uniquely identifies a document in a given collection, and the attribute *_rev*\n/// contains the new document revision.\n///\n/// If the edge document does not exist, then a *HTTP 404* is returned and the\n/// body of the response contains an error document.\n///\n/// There are two ways for specifying the targeted revision id for\n/// conditional replacements (i.e. replacements that will only be executed if\n/// the revision id found in the database matches the revision id specified\n/// in the request):\n/// - specifying the target revision in the *rev* URL query parameter\n/// - specifying the target revision in the *if-match* HTTP header\n///\n/// Specifying a target revision is optional, however, if done, only one of the\n/// described mechanisms must be used (either the *rev* query parameter or the\n/// *if-match* HTTP header).\n/// Regardless which mechanism is used, the parameter needs to contain the target\n/// revision id as returned in the *_rev* attribute of an edge document or\n/// by an HTTP *etag* header.\n///\n/// For example, to conditionally replace an edge document based on a specific revision\n/// id, you can use the following request:\n///\n/// - PUT /_api/document/*document-handle*?rev=*etag*\n///\n/// If a target revision id is provided in the request (e.g. via the *etag* value\n/// in the *rev* URL query parameter above), ArangoDB will check that\n/// the revision id of the edge document found in the database is equal to the target\n/// revision id provided in the request. If there is a mismatch between the revision\n/// id, then by default a *HTTP 412* conflict is returned and no replacement is\n/// performed.\n///\n/// The conditional update behavior can be overridden with the *policy* URL query parameter:\n///\n/// - PUT /_api/document/*document-handle*?policy=*policy*\n///\n/// If *policy* is set to *error*, then the behavior is as before: replacements\n/// will fail if the revision id found in the database does not match the target\n/// revision id specified in the request.\n///\n/// If *policy* is set to *last*, then the replacement will succeed, even if the\n/// revision id found in the database does not match the target revision id specified\n/// in the request. You can use the *last* *policy* to force replacements.\n///\n",
@@ -4305,7 +4545,7 @@
"Graph edges"
],
"x-examples": [],
- "x-filename": "Graph edges - ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_UPDATES.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_DELETE.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READ.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READINOUTBOUND.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_REPLACE.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READ_HEAD.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_CREATE.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READ_ALL.md"
+ "x-filename": "Graph edges - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_UPDATES.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READ_HEAD.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_DELETE.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READ_ALL.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_CREATE.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READ.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_REPLACE.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READINOUTBOUND.md"
}
},
"/_api/edges/{collection-id}": {
@@ -4351,7 +4591,7 @@
"Graph edges"
],
"x-examples": [],
- "x-filename": "Graph edges - ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_UPDATES.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_DELETE.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READ.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READINOUTBOUND.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_REPLACE.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READ_HEAD.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_CREATE.md, ./Documentation/DocuBlocks/Rest//Graph edges/API_EDGE_READ_ALL.md"
+ "x-filename": "Graph edges - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_UPDATES.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READ_HEAD.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_DELETE.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READ_ALL.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_CREATE.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READ.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_REPLACE.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph edges/API_EDGE_READINOUTBOUND.md"
}
},
"/_api/endpoint": {
@@ -4374,7 +4614,7 @@
"Administration"
],
"x-examples": [],
- "x-filename": "Administration - ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_statistics.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_database_version.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_endpoint.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_time.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_post_admin_test.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_post_api_new_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_server_role.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_sleep.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_tasks_all.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_echo.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_long_echo.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_post_admin_execute.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_modules_flush.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_routing_reloads.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_statistics_description.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_delete_api_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_put_api_new_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_return.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_initiate.md"
+ "x-filename": "Administration - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_modules_flush.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_post_admin_execute.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_server_role.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_database_version.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_echo.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_delete_api_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_post_api_new_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_long_echo.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_routing_reloads.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_return.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_post_admin_test.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_time.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_endpoint.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_sleep.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_put_api_new_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_statistics.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_tasks_all.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_statistics_description.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_initiate.md"
}
},
"/_api/explain": {
@@ -4407,7 +4647,7 @@
"AQL"
],
"x-examples": [],
- "x-filename": "AQL - ./Documentation/DocuBlocks/Rest//AQL/JSF_post_api_aqlfunction.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQuerySlow.md, ./Documentation/DocuBlocks/Rest//AQL/PutApiQueryCacheProperties.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryCacheProperties.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryCurrent.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQueryCache.md, ./Documentation/DocuBlocks/Rest//AQL/PutApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQuerySlow.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_get_api_aqlfunction.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_post_api_explain.md, ./Documentation/DocuBlocks/Rest//AQL/PostApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQueryKill.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_delete_api_aqlfunction.md"
+ "x-filename": "AQL - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryCacheProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQueryCache.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQueryKill.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PutApiQueryCacheProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_post_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_post_api_explain.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_delete_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PutApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryCurrent.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PostApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_get_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQuerySlow.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQuerySlow.md"
}
},
"/_api/export": {
@@ -4453,7 +4693,7 @@
"Bulk"
],
"x-examples": [],
- "x-filename": "Bulk - ./Documentation/DocuBlocks/Rest//Bulk/JSF_import_document.md, ./Documentation/DocuBlocks/Rest//Bulk/JSF_import_json.md, ./Documentation/DocuBlocks/Rest//Bulk/JSF_batch_processing.md, ./Documentation/DocuBlocks/Rest//Bulk/JSF_post_api_export.md"
+ "x-filename": "Bulk - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Bulk/JSF_post_api_export.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Bulk/JSF_batch_processing.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Bulk/JSF_import_document.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Bulk/JSF_import_json.md"
}
},
"/_api/gharial": {
@@ -4470,7 +4710,7 @@
"Graph"
],
"x-examples": [],
- "x-filename": "Graph - ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_vertex_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_edge_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_replace_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_drop_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_replace_http_examples.md"
+ "x-filename": "Graph - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_vertex_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_delete_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_drop_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_edge_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_delete_http_examples.md"
},
"post": {
"description": "\n\n/// The creation of a graph requires the name of the graph and a definition of its edges.\n/// [See also edge definitions](../GeneralGraphs/Management.md#edge-definitions).\n///\n**A json post document with these Properties is required:**\n\n - **orphanCollections**: /// An array of additional vertex collections.\n ///\n - **edgeDefinitions**: /// An array of definitions for the edge\n ///\n - **name**: /// Name of the graph.\n ///\n\n\n\nExample: ///
shell> curl -X POST --data-binary @- --dump - http://localhost:8529/_api/gharial <<EOF\n{ \n \"name\" : \"myGraph\", \n \"edgeDefinitions\" : [ \n { \n \"collection\" : \"edges\", \n \"from\" : [ \n \"startVertices\" \n ], \n \"to\" : [ \n \"endVertices\" \n ] \n } \n ] \n}\nEOF\n\nHTTP/1.1 201 Created\ncontent-type: application/json\netag: 555817682\n\n{ \n \"error\" : false, \n \"code\" : 201, \n \"graph\" : { \n \"name\" : \"myGraph\", \n \"edgeDefinitions\" : [ \n { \n \"collection\" : \"edges\", \n \"from\" : [ \n \"startVertices\" \n ], \n \"to\" : [ \n \"endVertices\" \n ] \n } \n ], \n \"orphanCollections\" : [ ], \n \"_id\" : \"_graphs/myGraph\", \n \"_rev\" : \"555817682\" \n } \n}\n
\n/// \n///////////////////////////////////////////////////////////////////////////////\n",
@@ -4498,7 +4738,7 @@
"Graph"
],
"x-examples": [],
- "x-filename": "Graph - ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_vertex_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_edge_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_replace_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_drop_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_replace_http_examples.md"
+ "x-filename": "Graph - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_vertex_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_delete_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_drop_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_edge_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_delete_http_examples.md"
}
},
"/_api/gharial/{graph-name}": {
@@ -4518,7 +4758,7 @@
"Graph"
],
"x-examples": [],
- "x-filename": "Graph - ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_vertex_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_edge_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_replace_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_drop_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_replace_http_examples.md"
+ "x-filename": "Graph - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_vertex_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_delete_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_drop_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_edge_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_delete_http_examples.md"
},
"get": {
"description": "\n\n/// Gets a graph from the collection *\\_graphs*.\n/// Returns the definition content of this graph.\n///\n\nExample: ///
shell> curl --dump - http://localhost:8529/_api/gharial/myGraph\n\nHTTP/1.1 200 OK\ncontent-type: application/json\netag: 580262610\n\n{ \n \"error\" : false, \n \"code\" : 200, \n \"graph\" : { \n \"name\" : \"myGraph\", \n \"edgeDefinitions\" : [ \n { \n \"collection\" : \"edges\", \n \"from\" : [ \n \"startVertices\" \n ], \n \"to\" : [ \n \"endVertices\" \n ] \n } \n ], \n \"orphanCollections\" : [ ], \n \"_id\" : \"_graphs/myGraph\", \n \"_rev\" : \"580262610\" \n } \n}\n
\n/// \n///////////////////////////////////////////////////////////////////////////////\n",
@@ -4536,7 +4776,7 @@
"Graph"
],
"x-examples": [],
- "x-filename": "Graph - ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_vertex_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_edge_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_replace_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_drop_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_replace_http_examples.md"
+ "x-filename": "Graph - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_vertex_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_delete_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_drop_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_edge_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_delete_http_examples.md"
}
},
"/_api/gharial/{graph-name}/edge": {
@@ -4556,7 +4796,7 @@
"Graph"
],
"x-examples": [],
- "x-filename": "Graph - ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_vertex_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_edge_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_replace_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_drop_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_replace_http_examples.md"
+ "x-filename": "Graph - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_vertex_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_delete_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_drop_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_edge_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_delete_http_examples.md"
},
"post": {
"description": "\n\n/// Adds an additional edge definition to the graph.\n/// This edge definition has to contain a *collection* and an array of each *from* and *to* vertex collections.\n/// An edge definition can only be added if this definition is either not used in any other graph, or it is used\n/// with exactly the same definition. It is not possible to store a definition \"e\" from \"v1\" to \"v2\" in the one\n/// graph, and \"e\" from \"v2\" to \"v1\" in the other graph.\n///\n**A json post document with these Properties is required:**\n\n - **to**: /// One or many edge collections that can contain target vertices.\n /// of type string\n - **from**: /// One or many vertex collections that can contain source vertices.\n /// of type string\n - **collection**: /// The name of the edge collection to be used.\n ///\n\n\n\nExample: ///
shell> curl -X POST --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge <<EOF\n{ \n \"collection\" : \"lives_in\", \n \"from\" : [ \n \"female\", \n \"male\" \n ], \n \"to\" : [ \n \"city\" \n ] \n}\nEOF\n\nHTTP/1.1 201 Created\ncontent-type: application/json\netag: 543103698\n\n{ \n \"error\" : false, \n \"code\" : 201, \n \"graph\" : { \n \"name\" : \"social\", \n \"edgeDefinitions\" : [ \n { \n \"collection\" : \"relation\", \n \"from\" : [ \n \"female\", \n \"male\" \n ], \n \"to\" : [ \n \"female\", \n \"male\" \n ] \n }, \n { \n \"collection\" : \"lives_in\", \n \"from\" : [ \n \"female\", \n \"male\" \n ], \n \"to\" : [ \n \"city\" \n ] \n } \n ], \n \"orphanCollections\" : [ ], \n \"_id\" : \"_graphs/social\", \n \"_rev\" : \"543103698\" \n } \n}\n
\n/// \n///////////////////////////////////////////////////////////////////////////////\n",
@@ -4587,7 +4827,7 @@
"Graph"
],
"x-examples": [],
- "x-filename": "Graph - ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_vertex_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_edge_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_replace_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_drop_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_replace_http_examples.md"
+ "x-filename": "Graph - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_vertex_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_delete_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_drop_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_edge_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_delete_http_examples.md"
}
},
"/_api/gharial/{graph-name}/edge/{collection-name}": {
@@ -4622,7 +4862,7 @@
"Graph"
],
"x-examples": [],
- "x-filename": "Graph - ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_vertex_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_edge_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_replace_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_drop_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_replace_http_examples.md"
+ "x-filename": "Graph - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_vertex_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_delete_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_drop_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_edge_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_delete_http_examples.md"
}
},
"/_api/gharial/{graph-name}/edge/{collection-name}/{edge-key}": {
@@ -4648,7 +4888,7 @@
"Graph"
],
"x-examples": [],
- "x-filename": "Graph - ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_vertex_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_edge_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_replace_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_drop_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_replace_http_examples.md"
+ "x-filename": "Graph - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_vertex_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_delete_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_drop_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_edge_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_delete_http_examples.md"
},
"get": {
"description": "\n\n/// Gets an edge from the given collection.\n///\n\nExample: ///
shell> curl --dump - http://localhost:8529/_api/gharial/social/edge/relation/aliceAndBob\n\nHTTP/1.1 200 OK\ncontent-type: application/json\netag: 577968850\n\n{ \n \"error\" : false, \n \"code\" : 200, \n \"edge\" : { \n \"_id\" : \"relation/aliceAndBob\", \n \"_key\" : \"aliceAndBob\", \n \"_rev\" : \"577968850\", \n \"_from\" : \"female/alice\", \n \"_to\" : \"male/bob\", \n \"type\" : \"married\" \n } \n}\n
\n/// \n///////////////////////////////////////////////////////////////////////////////\n",
@@ -4669,7 +4909,7 @@
"Graph"
],
"x-examples": [],
- "x-filename": "Graph - ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_vertex_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_edge_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_replace_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_drop_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_replace_http_examples.md"
+ "x-filename": "Graph - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_vertex_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_delete_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_drop_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_edge_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_delete_http_examples.md"
},
"patch": {
"description": "\n\n/// Updates the data of the specific edge in the collection.\n///\n\nfree style json body\n\n\nExample: ///
shell> curl -X PATCH --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge/relation/aliceAndBob <<EOF\n{ \n \"since\" : \"01.01.2001\" \n}\nEOF\n\nHTTP/1.1 202 Accepted\ncontent-type: application/json\netag: 609295058\n\n{ \n \"error\" : false, \n \"code\" : 202, \n \"edge\" : { \n \"_id\" : \"relation/aliceAndBob\", \n \"_rev\" : \"609295058\", \n \"_oldRev\" : \"608180946\", \n \"_key\" : \"aliceAndBob\" \n } \n}\n
\n/// \n///////////////////////////////////////////////////////////////////////////////\n",
@@ -4702,7 +4942,7 @@
"Graph"
],
"x-examples": [],
- "x-filename": "Graph - ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_vertex_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_edge_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_replace_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_drop_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_replace_http_examples.md"
+ "x-filename": "Graph - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_vertex_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_delete_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_drop_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_edge_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_delete_http_examples.md"
},
"put": {
"description": "\n\n/// Replaces the data of an edge in the collection.\n///\n\nfree style json body\n\n\nExample: ///
shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge/relation/aliceAndBob <<EOF\n{ \n \"type\" : \"divorced\" \n}\nEOF\n\nHTTP/1.1 202 Accepted\ncontent-type: application/json\netag: 613161682\n\n{ \n \"error\" : false, \n \"code\" : 202, \n \"edge\" : { \n \"_id\" : \"relation/aliceAndBob\", \n \"_rev\" : \"613161682\", \n \"_oldRev\" : \"612178642\", \n \"_key\" : \"aliceAndBob\" \n } \n}\n
\n/// \n///////////////////////////////////////////////////////////////////////////////\n",
@@ -4738,7 +4978,7 @@
"Graph"
],
"x-examples": [],
- "x-filename": "Graph - ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_vertex_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_edge_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_replace_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_drop_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_replace_http_examples.md"
+ "x-filename": "Graph - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_vertex_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_delete_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_drop_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_edge_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_delete_http_examples.md"
}
},
"/_api/gharial/{graph-name}/edge/{definition-name}": {
@@ -4761,7 +5001,7 @@
"Graph"
],
"x-examples": [],
- "x-filename": "Graph - ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_vertex_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_edge_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_replace_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_drop_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_replace_http_examples.md"
+ "x-filename": "Graph - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_vertex_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_delete_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_drop_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_edge_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_delete_http_examples.md"
},
"post": {
"description": "\n\n/// Change one specific edge definition.\n/// This will modify all occurrences of this definition in all graphs known to your database.\n///\n**A json post document with these Properties is required:**\n\n - **to**: /// One or many edge collections that can contain target vertices.\n /// of type string\n - **from**: /// One or many vertex collections that can contain source vertices.\n /// of type string\n - **collection**: /// The name of the edge collection to be used.\n ///\n\n\n\nExample: ///
shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge/relation <<EOF\n{ \n \"collection\" : \"relation\", \n \"from\" : [ \n \"female\", \n \"male\", \n \"animal\" \n ], \n \"to\" : [ \n \"female\", \n \"male\", \n \"animal\" \n ] \n}\nEOF\n\nHTTP/1.1 200 OK\ncontent-type: application/json\netag: 622402258\n\n{ \n \"error\" : false, \n \"code\" : 200, \n \"graph\" : { \n \"name\" : \"social\", \n \"edgeDefinitions\" : [ \n { \n \"collection\" : \"relation\", \n \"from\" : [ \n \"animal\", \n \"female\", \n \"male\" \n ], \n \"to\" : [ \n \"animal\", \n \"female\", \n \"male\" \n ] \n } \n ], \n \"orphanCollections\" : [ ], \n \"_id\" : \"_graphs/social\", \n \"_rev\" : \"622402258\" \n } \n}\n
\n/// \n///////////////////////////////////////////////////////////////////////////////\n",
@@ -4792,7 +5032,7 @@
"Graph"
],
"x-examples": [],
- "x-filename": "Graph - ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_vertex_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_edge_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_replace_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_drop_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_replace_http_examples.md"
+ "x-filename": "Graph - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_vertex_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_delete_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_drop_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_edge_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_delete_http_examples.md"
}
},
"/_api/gharial/{graph-name}/vertex": {
@@ -4812,7 +5052,7 @@
"Graph"
],
"x-examples": [],
- "x-filename": "Graph - ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_vertex_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_edge_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_replace_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_drop_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_replace_http_examples.md"
+ "x-filename": "Graph - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_vertex_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_delete_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_drop_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_edge_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_delete_http_examples.md"
},
"post": {
"description": "\n\n/// Adds a vertex collection to the set of collections of the graph. If the\n/// collection does not exist, it will be created.\n///\n\nExample: ///
shell> curl -X POST --data-binary @- --dump - http://localhost:8529/_api/gharial/social/vertex <<EOF\n{ \n \"collection\" : \"otherVertices\" \n}\nEOF\n\nHTTP/1.1 201 Created\ncontent-type: application/json\netag: 551426770\n\n{ \n \"error\" : false, \n \"code\" : 201, \n \"graph\" : { \n \"name\" : \"social\", \n \"edgeDefinitions\" : [ \n { \n \"collection\" : \"relation\", \n \"from\" : [ \n \"female\", \n \"male\" \n ], \n \"to\" : [ \n \"female\", \n \"male\" \n ] \n } \n ], \n \"orphanCollections\" : [ \n \"otherVertices\" \n ], \n \"_id\" : \"_graphs/social\", \n \"_rev\" : \"551426770\" \n } \n}\n
\n/// \n///////////////////////////////////////////////////////////////////////////////\n",
@@ -4830,7 +5070,7 @@
"Graph"
],
"x-examples": [],
- "x-filename": "Graph - ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_vertex_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_edge_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_replace_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_drop_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_replace_http_examples.md"
+ "x-filename": "Graph - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_vertex_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_delete_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_drop_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_edge_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_delete_http_examples.md"
}
},
"/_api/gharial/{graph-name}/vertex/{collection-name}": {
@@ -4853,7 +5093,7 @@
"Graph"
],
"x-examples": [],
- "x-filename": "Graph - ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_vertex_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_edge_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_replace_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_drop_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_replace_http_examples.md"
+ "x-filename": "Graph - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_vertex_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_delete_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_drop_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_edge_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_delete_http_examples.md"
},
"post": {
"description": "\n\n/// Adds a vertex to the given collection.\n///\n\nfree style json body\n\n\nExample: ///
shell> curl -X POST --data-binary @- --dump - http://localhost:8529/_api/gharial/social/vertex/male <<EOF\n{ \n \"name\" : \"Francis\" \n}\nEOF\n\nHTTP/1.1 202 Accepted\ncontent-type: application/json\netag: 549919442\n\n{ \n \"error\" : false, \n \"code\" : 202, \n \"vertex\" : { \n \"_id\" : \"male/549919442\", \n \"_rev\" : \"549919442\", \n \"_key\" : \"549919442\" \n } \n}\n
\n/// \n///////////////////////////////////////////////////////////////////////////////\n",
@@ -4886,7 +5126,7 @@
"Graph"
],
"x-examples": [],
- "x-filename": "Graph - ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_vertex_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_edge_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_replace_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_drop_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_replace_http_examples.md"
+ "x-filename": "Graph - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_vertex_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_delete_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_drop_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_edge_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_delete_http_examples.md"
}
},
"/_api/gharial/{graph-name}/vertex/{collection-name}/{vertex-key}": {
@@ -4912,7 +5152,7 @@
"Graph"
],
"x-examples": [],
- "x-filename": "Graph - ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_vertex_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_edge_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_replace_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_drop_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_replace_http_examples.md"
+ "x-filename": "Graph - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_vertex_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_delete_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_drop_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_edge_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_delete_http_examples.md"
},
"get": {
"description": "\n\n/// Gets a vertex from the given collection.\n///\n\nExample: ///
shell> curl --dump - http://localhost:8529/_api/gharial/social/vertex/female/alice\n\nHTTP/1.1 200 OK\ncontent-type: application/json\netag: 582097618\n\n{ \n \"error\" : false, \n \"code\" : 200, \n \"vertex\" : { \n \"_id\" : \"female/alice\", \n \"_key\" : \"alice\", \n \"_rev\" : \"582097618\", \n \"name\" : \"Alice\" \n } \n}\n
\n/// \n///////////////////////////////////////////////////////////////////////////////\n",
@@ -4933,7 +5173,7 @@
"Graph"
],
"x-examples": [],
- "x-filename": "Graph - ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_vertex_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_edge_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_replace_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_drop_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_replace_http_examples.md"
+ "x-filename": "Graph - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_vertex_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_delete_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_drop_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_edge_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_delete_http_examples.md"
},
"patch": {
"description": "\n\n/// Updates the data of the specific vertex in the collection.\n///\n\nfree style json body\n\n\nExample: ///
shell> curl -X PATCH --data-binary @- --dump - http://localhost:8529/_api/gharial/social/vertex/female/alice <<EOF\n{ \n \"age\" : 26 \n}\nEOF\n\nHTTP/1.1 202 Accepted\ncontent-type: application/json\netag: 605297362\n\n{ \n \"error\" : false, \n \"code\" : 202, \n \"vertex\" : { \n \"_id\" : \"female/alice\", \n \"_rev\" : \"605297362\", \n \"_oldRev\" : \"603003602\", \n \"_key\" : \"alice\" \n } \n}\n
\n/// \n///////////////////////////////////////////////////////////////////////////////\n",
@@ -4969,7 +5209,7 @@
"Graph"
],
"x-examples": [],
- "x-filename": "Graph - ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_vertex_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_edge_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_replace_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_drop_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_replace_http_examples.md"
+ "x-filename": "Graph - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_vertex_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_delete_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_drop_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_edge_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_delete_http_examples.md"
},
"put": {
"description": "\n\n/// Replaces the data of a vertex in the collection.\n///\n\nfree style json body\n\n\nExample: ///
shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/gharial/social/vertex/female/alice <<EOF\n{ \n \"name\" : \"Alice Cooper\", \n \"age\" : 26 \n}\nEOF\n\nHTTP/1.1 202 Accepted\ncontent-type: application/json\netag: 629152466\n\n{ \n \"error\" : false, \n \"code\" : 202, \n \"vertex\" : { \n \"_id\" : \"female/alice\", \n \"_rev\" : \"629152466\", \n \"_oldRev\" : \"626989778\", \n \"_key\" : \"alice\" \n } \n}\n
\n/// \n///////////////////////////////////////////////////////////////////////////////\n",
@@ -5005,7 +5245,7 @@
"Graph"
],
"x-examples": [],
- "x-filename": "Graph - ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_vertex_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_get_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_list_edge_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_modify_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_definition_remove_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_collection_add_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_replace_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_edge_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_create_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_drop_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_delete_http_examples.md, ./Documentation/DocuBlocks/Rest//Graph/JSF_general_graph_vertex_replace_http_examples.md"
+ "x-filename": "Graph - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_vertex_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_add_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_delete_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_drop_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_collection_remove_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_replace_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_get_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_definition_modify_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_edge_create_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_list_edge_http_examples.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph/JSF_general_graph_vertex_delete_http_examples.md"
}
},
"/_api/import#document": {
@@ -5105,7 +5345,7 @@
"Bulk"
],
"x-examples": [],
- "x-filename": "Bulk - ./Documentation/DocuBlocks/Rest//Bulk/JSF_import_document.md, ./Documentation/DocuBlocks/Rest//Bulk/JSF_import_json.md, ./Documentation/DocuBlocks/Rest//Bulk/JSF_batch_processing.md, ./Documentation/DocuBlocks/Rest//Bulk/JSF_post_api_export.md"
+ "x-filename": "Bulk - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Bulk/JSF_post_api_export.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Bulk/JSF_batch_processing.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Bulk/JSF_import_document.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Bulk/JSF_import_json.md"
}
},
"/_api/import#json": {
@@ -5212,7 +5452,7 @@
"Bulk"
],
"x-examples": [],
- "x-filename": "Bulk - ./Documentation/DocuBlocks/Rest//Bulk/JSF_import_document.md, ./Documentation/DocuBlocks/Rest//Bulk/JSF_import_json.md, ./Documentation/DocuBlocks/Rest//Bulk/JSF_batch_processing.md, ./Documentation/DocuBlocks/Rest//Bulk/JSF_post_api_export.md"
+ "x-filename": "Bulk - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Bulk/JSF_post_api_export.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Bulk/JSF_batch_processing.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Bulk/JSF_import_document.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Bulk/JSF_import_json.md"
}
},
"/_api/index": {
@@ -5237,7 +5477,7 @@
"Indexes"
],
"x-examples": [],
- "x-filename": "Indexes - ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_delete.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_skiplist.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_fulltext.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_hash.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_get_api_reads_index.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_get_api_index.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_geo.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_cap.md"
+ "x-filename": "Indexes - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_delete.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_get_api_reads_index.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_hash.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_geo.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_fulltext.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_get_api_index.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_cap.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_skiplist.md"
},
"post": {
"description": "**A json post document with these Properties is required:**\n\n - **fields**: /// an array of attribute paths.\n /// of type string\n - **unique**: /// if *true*, then create a unique index.\n ///\n - **type**: /// must be equal to *\"skiplist\"*.\n ///\n - **sparse**: /// if *true*, then create a sparse index.\n ///\n\n\n\n\n///\n/// Creates a skip-list index for the collection *collection-name*, if\n/// it does not already exist. The call expects an object containing the index\n/// details.\n///\n/// In a sparse index all documents will be excluded from the index that do not \n/// contain at least one of the specified index attributes (i.e. *fields*) or that \n/// have a value of *null* in any of the specified index attributes. Such documents \n/// will not be indexed, and not be taken into account for uniqueness checks if\n/// the *unique* flag is set.\n///\n/// In a non-sparse index, these documents will be indexed (for non-present\n/// indexed attributes, a value of *null* will be used) and will be taken into\n/// account for uniqueness checks if the *unique* flag is set.\n///\n/// **Note**: unique indexes on non-shard keys are not supported in a cluster.\n///\n\nExample: ///\n/// Creating a skiplist index\n///
shell> curl -X POST --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF\n{ \n \"type\" : \"skiplist\", \n \"unique\" : false, \n \"fields\" : [ \n \"a\", \n \"b\" \n ] \n}\nEOF\n\nHTTP/1.1 201 Created\ncontent-type: application/json; charset=utf-8\n\n{ \n \"id\" : \"products/788011730\", \n \"type\" : \"skiplist\", \n \"fields\" : [ \n \"a\", \n \"b\" \n ], \n \"unique\" : false, \n \"sparse\" : false, \n \"isNewlyCreated\" : true, \n \"error\" : false, \n \"code\" : 201 \n}\n
\nExample: ///\n/// Creating a sparse skiplist index\n///
shell> curl -X POST --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF\n{ \n \"type\" : \"skiplist\", \n \"unique\" : false, \n \"sparse\" : true, \n \"fields\" : [ \n \"a\" \n ] \n}\nEOF\n\nHTTP/1.1 201 Created\ncontent-type: application/json; charset=utf-8\n\n{ \n \"id\" : \"products/789453522\", \n \"type\" : \"skiplist\", \n \"fields\" : [ \n \"a\" \n ], \n \"unique\" : false, \n \"sparse\" : true, \n \"isNewlyCreated\" : true, \n \"error\" : false, \n \"code\" : 201 \n}\n
\n/// \n///////////////////////////////////////////////////////////////////////////////\n",
@@ -5278,7 +5518,7 @@
"Indexes"
],
"x-examples": [],
- "x-filename": "Indexes - ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_delete.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_skiplist.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_fulltext.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_hash.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_get_api_reads_index.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_get_api_index.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_geo.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_cap.md"
+ "x-filename": "Indexes - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_delete.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_get_api_reads_index.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_hash.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_geo.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_fulltext.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_get_api_index.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_cap.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_skiplist.md"
}
},
"/_api/index#CapConstraints": {
@@ -5321,7 +5561,7 @@
"Indexes"
],
"x-examples": [],
- "x-filename": "Indexes - ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_delete.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_skiplist.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_fulltext.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_hash.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_get_api_reads_index.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_get_api_index.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_geo.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_cap.md"
+ "x-filename": "Indexes - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_delete.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_get_api_reads_index.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_hash.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_geo.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_fulltext.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_get_api_index.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_cap.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_skiplist.md"
}
},
"/_api/index#fulltext": {
@@ -5361,7 +5601,7 @@
"Indexes"
],
"x-examples": [],
- "x-filename": "Indexes - ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_delete.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_skiplist.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_fulltext.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_hash.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_get_api_reads_index.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_get_api_index.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_geo.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_cap.md"
+ "x-filename": "Indexes - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_delete.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_get_api_reads_index.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_hash.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_geo.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_fulltext.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_get_api_index.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_cap.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_skiplist.md"
}
},
"/_api/index#general": {
@@ -5406,7 +5646,7 @@
"Indexes"
],
"x-examples": [],
- "x-filename": "Indexes - ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_delete.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_skiplist.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_fulltext.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_hash.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_get_api_reads_index.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_get_api_index.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_geo.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_cap.md"
+ "x-filename": "Indexes - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_delete.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_get_api_reads_index.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_hash.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_geo.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_fulltext.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_get_api_index.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_cap.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_skiplist.md"
}
},
"/_api/index#geo": {
@@ -5446,7 +5686,7 @@
"Indexes"
],
"x-examples": [],
- "x-filename": "Indexes - ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_delete.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_skiplist.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_fulltext.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_hash.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_get_api_reads_index.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_get_api_index.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_geo.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_cap.md"
+ "x-filename": "Indexes - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_delete.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_get_api_reads_index.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_hash.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_geo.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_fulltext.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_get_api_index.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_cap.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_skiplist.md"
}
},
"/_api/index#hash": {
@@ -5489,7 +5729,7 @@
"Indexes"
],
"x-examples": [],
- "x-filename": "Indexes - ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_delete.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_skiplist.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_fulltext.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_hash.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_get_api_reads_index.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_get_api_index.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_geo.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_cap.md"
+ "x-filename": "Indexes - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_delete.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_get_api_reads_index.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_hash.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_geo.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_fulltext.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_get_api_index.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_cap.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_skiplist.md"
}
},
"/_api/index/{index-handle}": {
@@ -5518,7 +5758,7 @@
"Indexes"
],
"x-examples": [],
- "x-filename": "Indexes - ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_delete.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_skiplist.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_fulltext.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_hash.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_get_api_reads_index.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_get_api_index.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_geo.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_cap.md"
+ "x-filename": "Indexes - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_delete.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_get_api_reads_index.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_hash.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_geo.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_fulltext.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_get_api_index.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_cap.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_skiplist.md"
},
"get": {
"description": "\n\n///\n/// The result is an object describing the index. It has at least the following\n/// attributes:\n///\n/// - *id*: the identifier of the index\n///\n/// - *type*: the index type\n///\n/// All other attributes are type-dependent. For example, some indexes provide\n/// *unique* or *sparse* flags, whereas others don't. Some indexes also provide \n/// a selectivity estimate in the *selectivityEstimate* attribute of the result.\n///\n\nExample: ///
shell> curl --dump - http://localhost:8529/_api/index/products/0\n\nHTTP/1.1 200 OK\ncontent-type: application/json; charset=utf-8\n\n{ \n \"id\" : \"products/0\", \n \"type\" : \"primary\", \n \"fields\" : [ \n \"_key\" \n ], \n \"selectivityEstimate\" : 1, \n \"unique\" : true, \n \"sparse\" : false, \n \"error\" : false, \n \"code\" : 200 \n}\n
\n/// \n///////////////////////////////////////////////////////////////////////////////\n",
@@ -5545,7 +5785,7 @@
"Indexes"
],
"x-examples": [],
- "x-filename": "Indexes - ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_delete.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_skiplist.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_fulltext.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_hash.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_get_api_reads_index.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_get_api_index.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_geo.md, ./Documentation/DocuBlocks/Rest//Indexes/JSF_post_api_index_cap.md"
+ "x-filename": "Indexes - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_delete.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_get_api_reads_index.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_hash.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_geo.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_fulltext.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_get_api_index.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_cap.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Indexes/JSF_post_api_index_skiplist.md"
}
},
"/_api/job/{job-id}": {
@@ -5577,7 +5817,7 @@
"job"
],
"x-examples": [],
- "x-filename": "job - ./Documentation/DocuBlocks/Rest//job/JSF_job_cancel.md, ./Documentation/DocuBlocks/Rest//job/JSF_job_fetch_result.md, ./Documentation/DocuBlocks/Rest//job/JSF_job_getStatusById.md, ./Documentation/DocuBlocks/Rest//job/JSF_job_getByType.md, ./Documentation/DocuBlocks/Rest//job/JSF_job_delete.md"
+ "x-filename": "job - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/job/JSF_job_cancel.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/job/JSF_job_getByType.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/job/JSF_job_getStatusById.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/job/JSF_job_fetch_result.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/job/JSF_job_delete.md"
},
"put": {
"description": "\n\n/// Returns the result of an async job identified by job-id. If the async job\n/// result is present on the server, the result will be removed from the list of\n/// result. That means this method can be called for each job-id once.\n/// The method will return the original job result's headers and body, plus the\n/// additional HTTP header x-arango-async-job-id. If this header is present,\n/// then\n/// the job was found and the response contains the original job's result. If\n/// the header is not present, the job was not found and the response contains\n/// status information from the job manager.\n///\n\nExample: /// Not providing a job-id:\n///
shell> curl -X PUT --dump - http://localhost:8529/_api/job\n\nHTTP/1.1 400 Bad Request\ncontent-type: application/json; charset=utf-8\n\n{ \n \"code\" : 400, \n \"error\" : true, \n \"errorMessage\" : \"bad parameter\", \n \"errorNum\" : 400 \n}\n
\nExample: ///\n/// Providing a job-id for a non-existing job:\n///
shell> curl -X PUT --dump - http://localhost:8529/_api/job/notthere\n\nHTTP/1.1 404 Not Found\ncontent-type: application/json; charset=utf-8\n\n{ \n \"code\" : 404, \n \"error\" : true, \n \"errorMessage\" : \"not found\", \n \"errorNum\" : 404 \n}\n
\nExample: ///\n/// Fetching the result of an HTTP GET job:\n///
shell> curl -X PUT --header 'x-arango-async: store' --dump - http://localhost:8529/_api/version\n\nHTTP/1.1 202 Accepted\ncontent-type: text/plain; charset=utf-8\nx-arango-async-id: 145262130180444\n\nshell> curl -X PUT --dump - http://localhost:8529/_api/job/145262130180444\n\nHTTP/1.1 200 OK\ncontent-type: application/json; charset=utf-8\nx-arango-async-id: 145262130180444\n\n{ \n \"server\" : \"arango\", \n \"version\" : \"2.8.0-devel\" \n}\n
\nExample: ///\n/// Fetching the result of an HTTP POST job that failed:\n///
shell> curl -X PUT --header 'x-arango-async: store' --data-binary @- --dump - http://localhost:8529/_api/collection <<EOF\n{ \n \"name\" : \" this name is invalid \" \n}\nEOF\n\nHTTP/1.1 202 Accepted\ncontent-type: text/plain; charset=utf-8\nx-arango-async-id: 145262130180448\n\nshell> curl -X PUT --dump - http://localhost:8529/_api/job/145262130180448\n\nHTTP/1.1 400 Bad Request\ncontent-type: application/json; charset=utf-8\nx-arango-async-id: 145262130180448\n\n{ \n \"error\" : true, \n \"code\" : 400, \n \"errorNum\" : 400, \n \"errorMessage\" : \"expected PUT /_api/collection/<collection-name>/<action>\" \n}\n
\n/// \n///////////////////////////////////////////////////////////////////////////////\n",
@@ -5607,7 +5847,7 @@
"job"
],
"x-examples": [],
- "x-filename": "job - ./Documentation/DocuBlocks/Rest//job/JSF_job_cancel.md, ./Documentation/DocuBlocks/Rest//job/JSF_job_fetch_result.md, ./Documentation/DocuBlocks/Rest//job/JSF_job_getStatusById.md, ./Documentation/DocuBlocks/Rest//job/JSF_job_getByType.md, ./Documentation/DocuBlocks/Rest//job/JSF_job_delete.md"
+ "x-filename": "job - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/job/JSF_job_cancel.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/job/JSF_job_getByType.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/job/JSF_job_getStatusById.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/job/JSF_job_fetch_result.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/job/JSF_job_delete.md"
}
},
"/_api/job/{job-id}/cancel": {
@@ -5639,7 +5879,7 @@
"job"
],
"x-examples": [],
- "x-filename": "job - ./Documentation/DocuBlocks/Rest//job/JSF_job_cancel.md, ./Documentation/DocuBlocks/Rest//job/JSF_job_fetch_result.md, ./Documentation/DocuBlocks/Rest//job/JSF_job_getStatusById.md, ./Documentation/DocuBlocks/Rest//job/JSF_job_getByType.md, ./Documentation/DocuBlocks/Rest//job/JSF_job_delete.md"
+ "x-filename": "job - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/job/JSF_job_cancel.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/job/JSF_job_getByType.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/job/JSF_job_getStatusById.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/job/JSF_job_fetch_result.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/job/JSF_job_delete.md"
}
},
"/_api/job/{type}": {
@@ -5671,7 +5911,7 @@
"job"
],
"x-examples": [],
- "x-filename": "job - ./Documentation/DocuBlocks/Rest//job/JSF_job_cancel.md, ./Documentation/DocuBlocks/Rest//job/JSF_job_fetch_result.md, ./Documentation/DocuBlocks/Rest//job/JSF_job_getStatusById.md, ./Documentation/DocuBlocks/Rest//job/JSF_job_getByType.md, ./Documentation/DocuBlocks/Rest//job/JSF_job_delete.md"
+ "x-filename": "job - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/job/JSF_job_cancel.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/job/JSF_job_getByType.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/job/JSF_job_getStatusById.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/job/JSF_job_fetch_result.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/job/JSF_job_delete.md"
},
"get": {
"description": "\n\n/// Returns the list of ids of async jobs with a specific status (either done or\n/// pending).\n/// The list can be used by the client to get an overview of the job system\n/// status and\n/// to retrieve completed job results later.\n///\n\nExample: ///\n/// Fetching the list of done jobs:\n///
shell> curl -X PUT --header 'x-arango-async: store' --dump - http://localhost:8529/_api/version\n\nHTTP/1.1 202 Accepted\ncontent-type: text/plain; charset=utf-8\nx-arango-async-id: 145262130180454\n\nshell> curl --dump - http://localhost:8529/_api/job/done\n\nHTTP/1.1 200 OK\ncontent-type: application/json; charset=utf-8\n\n[ \n \"145262130180454\" \n]\n
\nExample: ///\n/// Fetching the list of pending jobs:\n///
shell> curl -X PUT --header 'x-arango-async: store' --dump - http://localhost:8529/_api/version\n\nHTTP/1.1 202 Accepted\ncontent-type: text/plain; charset=utf-8\nx-arango-async-id: 145262130180458\n\nshell> curl --dump - http://localhost:8529/_api/job/pending\n\nHTTP/1.1 200 OK\ncontent-type: application/json; charset=utf-8\n\n[ ]\n
\nExample: ///\n/// Querying the status of a pending job:\n/// (we create a sleep job therefore...)\n///
shell> curl --header 'x-arango-async: store' --dump - http://localhost:8529/_admin/sleep?duration=30\n\nHTTP/1.1 202 Accepted\ncontent-type: text/plain; charset=utf-8\nx-arango-async-id: 145262130180462\n\nshell> curl --dump - http://localhost:8529/_api/job/pending\n\nHTTP/1.1 200 OK\ncontent-type: application/json; charset=utf-8\n\n[ \n \"145262130180462\" \n]\nshell> curl -X DELETE --dump - http://localhost:8529/_api/job/145262130180462\n\nHTTP/1.1 200 OK\ncontent-type: application/json; charset=utf-8\n\n{ \n \"result\" : true \n}\n
\n/// \n///////////////////////////////////////////////////////////////////////////////\n",
@@ -5698,7 +5938,7 @@
"job"
],
"x-examples": [],
- "x-filename": "job - ./Documentation/DocuBlocks/Rest//job/JSF_job_cancel.md, ./Documentation/DocuBlocks/Rest//job/JSF_job_fetch_result.md, ./Documentation/DocuBlocks/Rest//job/JSF_job_getStatusById.md, ./Documentation/DocuBlocks/Rest//job/JSF_job_getByType.md, ./Documentation/DocuBlocks/Rest//job/JSF_job_delete.md"
+ "x-filename": "job - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/job/JSF_job_cancel.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/job/JSF_job_getByType.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/job/JSF_job_getStatusById.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/job/JSF_job_fetch_result.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/job/JSF_job_delete.md"
}
},
"/_api/query": {
@@ -5728,7 +5968,7 @@
"AQL"
],
"x-examples": [],
- "x-filename": "AQL - ./Documentation/DocuBlocks/Rest//AQL/JSF_post_api_aqlfunction.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQuerySlow.md, ./Documentation/DocuBlocks/Rest//AQL/PutApiQueryCacheProperties.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryCacheProperties.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryCurrent.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQueryCache.md, ./Documentation/DocuBlocks/Rest//AQL/PutApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQuerySlow.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_get_api_aqlfunction.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_post_api_explain.md, ./Documentation/DocuBlocks/Rest//AQL/PostApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQueryKill.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_delete_api_aqlfunction.md"
+ "x-filename": "AQL - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryCacheProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQueryCache.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQueryKill.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PutApiQueryCacheProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_post_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_post_api_explain.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_delete_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PutApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryCurrent.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PostApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_get_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQuerySlow.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQuerySlow.md"
}
},
"/_api/query-cache": {
@@ -5748,7 +5988,7 @@
"AQL"
],
"x-examples": [],
- "x-filename": "AQL - ./Documentation/DocuBlocks/Rest//AQL/JSF_post_api_aqlfunction.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQuerySlow.md, ./Documentation/DocuBlocks/Rest//AQL/PutApiQueryCacheProperties.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryCacheProperties.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryCurrent.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQueryCache.md, ./Documentation/DocuBlocks/Rest//AQL/PutApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQuerySlow.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_get_api_aqlfunction.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_post_api_explain.md, ./Documentation/DocuBlocks/Rest//AQL/PostApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQueryKill.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_delete_api_aqlfunction.md"
+ "x-filename": "AQL - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryCacheProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQueryCache.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQueryKill.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PutApiQueryCacheProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_post_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_post_api_explain.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_delete_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PutApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryCurrent.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PostApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_get_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQuerySlow.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQuerySlow.md"
}
},
"/_api/query-cache/properties": {
@@ -5768,7 +6008,7 @@
"AQL"
],
"x-examples": [],
- "x-filename": "AQL - ./Documentation/DocuBlocks/Rest//AQL/JSF_post_api_aqlfunction.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQuerySlow.md, ./Documentation/DocuBlocks/Rest//AQL/PutApiQueryCacheProperties.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryCacheProperties.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryCurrent.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQueryCache.md, ./Documentation/DocuBlocks/Rest//AQL/PutApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQuerySlow.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_get_api_aqlfunction.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_post_api_explain.md, ./Documentation/DocuBlocks/Rest//AQL/PostApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQueryKill.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_delete_api_aqlfunction.md"
+ "x-filename": "AQL - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryCacheProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQueryCache.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQueryKill.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PutApiQueryCacheProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_post_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_post_api_explain.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_delete_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PutApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryCurrent.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PostApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_get_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQuerySlow.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQuerySlow.md"
},
"put": {
"description": "\n\n/// After the properties have been changed, the current set of properties will\n/// be returned in the HTTP response.\n///\n/// Note: changing the properties may invalidate all results in the cache.\n/// The global properties for AQL query cache.\n/// The properties need to be passed in the attribute *properties* in the body\n/// of the HTTP request. *properties* needs to be a JSON object with the following\n/// properties:\n///\n**A json post document with these Properties is required:**\n\n - **mode**: /// the mode the AQL query cache should operate in. Possible values are *off*, *on* or *demand*.\n ///\n - **maxResults**: /// the maximum number of query results that will be stored per database-specific cache.\n ///\n ///\n\n\n",
@@ -5796,7 +6036,7 @@
"AQL"
],
"x-examples": [],
- "x-filename": "AQL - ./Documentation/DocuBlocks/Rest//AQL/JSF_post_api_aqlfunction.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQuerySlow.md, ./Documentation/DocuBlocks/Rest//AQL/PutApiQueryCacheProperties.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryCacheProperties.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryCurrent.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQueryCache.md, ./Documentation/DocuBlocks/Rest//AQL/PutApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQuerySlow.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_get_api_aqlfunction.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_post_api_explain.md, ./Documentation/DocuBlocks/Rest//AQL/PostApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQueryKill.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_delete_api_aqlfunction.md"
+ "x-filename": "AQL - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryCacheProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQueryCache.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQueryKill.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PutApiQueryCacheProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_post_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_post_api_explain.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_delete_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PutApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryCurrent.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PostApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_get_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQuerySlow.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQuerySlow.md"
}
},
"/_api/query/current": {
@@ -5816,7 +6056,7 @@
"AQL"
],
"x-examples": [],
- "x-filename": "AQL - ./Documentation/DocuBlocks/Rest//AQL/JSF_post_api_aqlfunction.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQuerySlow.md, ./Documentation/DocuBlocks/Rest//AQL/PutApiQueryCacheProperties.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryCacheProperties.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryCurrent.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQueryCache.md, ./Documentation/DocuBlocks/Rest//AQL/PutApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQuerySlow.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_get_api_aqlfunction.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_post_api_explain.md, ./Documentation/DocuBlocks/Rest//AQL/PostApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQueryKill.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_delete_api_aqlfunction.md"
+ "x-filename": "AQL - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryCacheProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQueryCache.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQueryKill.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PutApiQueryCacheProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_post_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_post_api_explain.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_delete_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PutApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryCurrent.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PostApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_get_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQuerySlow.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQuerySlow.md"
}
},
"/_api/query/properties": {
@@ -5836,7 +6076,7 @@
"AQL"
],
"x-examples": [],
- "x-filename": "AQL - ./Documentation/DocuBlocks/Rest//AQL/JSF_post_api_aqlfunction.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQuerySlow.md, ./Documentation/DocuBlocks/Rest//AQL/PutApiQueryCacheProperties.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryCacheProperties.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryCurrent.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQueryCache.md, ./Documentation/DocuBlocks/Rest//AQL/PutApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQuerySlow.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_get_api_aqlfunction.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_post_api_explain.md, ./Documentation/DocuBlocks/Rest//AQL/PostApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQueryKill.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_delete_api_aqlfunction.md"
+ "x-filename": "AQL - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryCacheProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQueryCache.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQueryKill.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PutApiQueryCacheProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_post_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_post_api_explain.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_delete_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PutApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryCurrent.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PostApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_get_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQuerySlow.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQuerySlow.md"
},
"put": {
"description": "**A json post document with these Properties is required:**\n\n - **slowQueryThreshold**: /// The threshold value for treating a query as slow. A\n /// query with a runtime greater or equal to this threshold value will be\n /// put into the list of slow queries when slow query tracking is enabled.\n /// The value for *slowQueryThreshold* is specified in seconds.\n ///\n - **enabled**: /// If set to *true*, then queries will be tracked. If set to\n /// *false*, neither queries nor slow queries will be tracked.\n ///\n - **maxSlowQueries**: /// The maximum number of slow queries to keep in the list\n /// of slow queries. If the list of slow queries is full, the oldest entry in\n /// it will be discarded when additional slow queries occur.\n ///\n - **trackSlowQueries**: /// If set to *true*, then slow queries will be tracked\n /// in the list of slow queries if their runtime exceeds the value set in\n /// *slowQueryThreshold*. In order for slow queries to be tracked, the *enabled*\n /// property must also be set to *true*.\n ///\n - **maxQueryStringLength**: /// The maximum query string length to keep in the list of queries.\n /// Query strings can have arbitrary lengths, and this property\n /// can be used to save memory in case very long query strings are used. The\n /// value is specified in bytes.\n ///\n\n\n\n\n/// The properties need to be passed in the attribute *properties* in the body\n/// of the HTTP request. *properties* needs to be a JSON object.\n///\n/// After the properties have been changed, the current set of properties will\n/// be returned in the HTTP response.\n///\n",
@@ -5864,7 +6104,7 @@
"AQL"
],
"x-examples": [],
- "x-filename": "AQL - ./Documentation/DocuBlocks/Rest//AQL/JSF_post_api_aqlfunction.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQuerySlow.md, ./Documentation/DocuBlocks/Rest//AQL/PutApiQueryCacheProperties.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryCacheProperties.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryCurrent.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQueryCache.md, ./Documentation/DocuBlocks/Rest//AQL/PutApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQuerySlow.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_get_api_aqlfunction.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_post_api_explain.md, ./Documentation/DocuBlocks/Rest//AQL/PostApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQueryKill.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_delete_api_aqlfunction.md"
+ "x-filename": "AQL - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryCacheProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQueryCache.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQueryKill.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PutApiQueryCacheProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_post_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_post_api_explain.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_delete_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PutApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryCurrent.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PostApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_get_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQuerySlow.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQuerySlow.md"
}
},
"/_api/query/slow": {
@@ -5884,7 +6124,7 @@
"AQL"
],
"x-examples": [],
- "x-filename": "AQL - ./Documentation/DocuBlocks/Rest//AQL/JSF_post_api_aqlfunction.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQuerySlow.md, ./Documentation/DocuBlocks/Rest//AQL/PutApiQueryCacheProperties.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryCacheProperties.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryCurrent.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQueryCache.md, ./Documentation/DocuBlocks/Rest//AQL/PutApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQuerySlow.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_get_api_aqlfunction.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_post_api_explain.md, ./Documentation/DocuBlocks/Rest//AQL/PostApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQueryKill.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_delete_api_aqlfunction.md"
+ "x-filename": "AQL - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryCacheProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQueryCache.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQueryKill.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PutApiQueryCacheProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_post_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_post_api_explain.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_delete_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PutApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryCurrent.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PostApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_get_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQuerySlow.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQuerySlow.md"
},
"get": {
"description": "\n\n/// Returns an array containing the last AQL queries that exceeded the slow\n/// query threshold in the selected database.\n/// The maximum amount of queries in the list can be controlled by setting\n/// the query tracking property `maxSlowQueries`. The threshold for treating\n/// a query as *slow* can be adjusted by setting the query tracking property\n/// `slowQueryThreshold`.\n///\n/// Each query is a JSON object with the following attributes:\n///\n/// - *id*: the query's id\n///\n/// - *query*: the query string (potentially truncated)\n///\n/// - *started*: the date and time when the query was started\n///\n/// - *runTime*: the query's run time up to the point the list of queries was\n/// queried\n///\n",
@@ -5902,7 +6142,7 @@
"AQL"
],
"x-examples": [],
- "x-filename": "AQL - ./Documentation/DocuBlocks/Rest//AQL/JSF_post_api_aqlfunction.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQuerySlow.md, ./Documentation/DocuBlocks/Rest//AQL/PutApiQueryCacheProperties.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryCacheProperties.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryCurrent.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQueryCache.md, ./Documentation/DocuBlocks/Rest//AQL/PutApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQuerySlow.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_get_api_aqlfunction.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_post_api_explain.md, ./Documentation/DocuBlocks/Rest//AQL/PostApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQueryKill.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_delete_api_aqlfunction.md"
+ "x-filename": "AQL - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryCacheProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQueryCache.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQueryKill.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PutApiQueryCacheProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_post_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_post_api_explain.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_delete_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PutApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryCurrent.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PostApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_get_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQuerySlow.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQuerySlow.md"
}
},
"/_api/query/{query-id}": {
@@ -5934,7 +6174,7 @@
"AQL"
],
"x-examples": [],
- "x-filename": "AQL - ./Documentation/DocuBlocks/Rest//AQL/JSF_post_api_aqlfunction.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQuerySlow.md, ./Documentation/DocuBlocks/Rest//AQL/PutApiQueryCacheProperties.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryCacheProperties.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryCurrent.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQueryCache.md, ./Documentation/DocuBlocks/Rest//AQL/PutApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQuerySlow.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_get_api_aqlfunction.md, ./Documentation/DocuBlocks/Rest//AQL/GetApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_post_api_explain.md, ./Documentation/DocuBlocks/Rest//AQL/PostApiQueryProperties.md, ./Documentation/DocuBlocks/Rest//AQL/DeleteApiQueryKill.md, ./Documentation/DocuBlocks/Rest//AQL/JSF_delete_api_aqlfunction.md"
+ "x-filename": "AQL - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryCacheProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQueryCache.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQueryKill.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PutApiQueryCacheProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_post_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_post_api_explain.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_delete_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PutApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQueryCurrent.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/PostApiQueryProperties.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/JSF_get_api_aqlfunction.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/DeleteApiQuerySlow.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/AQL/GetApiQuerySlow.md"
}
},
"/_api/replication/applier-config": {
@@ -5957,7 +6197,7 @@
"Replication"
],
"x-examples": [],
- "x-filename": "Replication - ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_return_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_post_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_start.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_serverID.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_stop.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_synchronize.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_adjust.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_makeSlave.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_delete_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_dump.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_returns.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_cluster_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_applier_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_first_tick.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_tick_ranges.md"
+ "x-filename": "Replication - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_post_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_delete_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_makeSlave.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_applier_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_returns.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_adjust.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_first_tick.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_stop.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_serverID.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_synchronize.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_cluster_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_return_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_tick_ranges.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_dump.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_start.md"
},
"put": {
"description": "**A json post document with these Properties is required:**\n\n - **username**: /// an optional ArangoDB username to use when connecting to the endpoint.\n ///\n - **includeSystem**: /// whether or not system collection operations will be applied\n ///\n - **endpoint**: /// the logger server to connect to (e.g. \"tcp://192.168.173.13:8529\"). The endpoint must be specified.\n ///\n - **verbose**: /// if set to *true*, then a log line will be emitted for all operations \n /// performed by the replication applier. This should be used for debugging replication\n /// problems only.\n ///\n - **connectTimeout**: /// the timeout (in seconds) when attempting to connect to the\n /// endpoint. This value is used for each connection attempt.\n ///\n - **autoResync**: /// whether or not the slave should perform a full automatic resynchronization\n /// with the master in case the master cannot serve log data requested by the\n /// slave,\n /// or when the replication is started and no tick value can be found.\n ///\n - **database**: /// the name of the database on the endpoint. If not specified, defaults to the current local database name.\n ///\n - **idleMinWaitTime**: /// the minimum wait time (in seconds) that the applier will intentionally idle\n /// before fetching more log data from the master in case the master has\n /// already sent all its log data. This wait time can be used to control the\n /// frequency with which the replication applier sends HTTP log fetch requests\n /// to the master in case there is no write activity on the master.\n /// This value will be ignored if set to *0*.\n ///\n - **requestTimeout**: /// the timeout (in seconds) for individual requests to the endpoint.\n ///\n - **requireFromPresent**: /// if set to *true*, then the replication applier will check\n /// at start whether the start tick from which it starts or resumes replication is\n /// still present on the master. If not, then there would be data loss. If \n /// *requireFromPresent* is *true*, the replication applier will abort with an\n /// appropriate error message. If set to *false*, then the replication applier will\n /// still start, and ignore the data loss.\n ///\n - **idleMaxWaitTime**: /// the maximum wait time (in seconds) that the applier will intentionally idle \n /// before fetching more log data from the master in case the master has \n /// already sent all its log data and there have been previous log fetch attempts\n /// that resulted in no more log data. This wait time can be used to control the\n /// maximum frequency with which the replication applier sends HTTP log fetch\n /// requests to the master in case there is no write activity on the master for\n /// longer periods. This configuration value will only be used if the option\n /// *adaptivePolling* is set to *true*.\n /// This value will be ignored if set to *0*.\n ///\n - **restrictCollections**: /// the array of collections to include or exclude,\n /// based on the setting of *restrictType*\n /// of type string\n - **restrictType**: /// the configuration for *restrictCollections*; Has to be either *include* or *exclude*\n ///\n - **initialSyncMaxWaitTime**: /// the maximum wait time (in seconds) that the initial synchronization will\n /// wait for a response from the master when fetching initial collection data.\n /// This wait time can be used to control after what time the initial\n /// synchronization\n /// will give up waiting for a response and fail. This value is relevant even\n /// for continuous replication when *autoResync* is set to *true* because this\n /// may re-start the initial synchronization when the master cannot provide\n /// log data the slave requires.\n /// This value will be ignored if set to *0*.\n ///\n - **maxConnectRetries**: /// the maximum number of connection attempts the applier\n /// will make in a row. If the applier cannot establish a connection to the\n /// endpoint in this number of attempts, it will stop itself.\n ///\n - **autoStart**: /// whether or not to auto-start the replication applier on\n /// (next and following) server starts\n ///\n - **adaptivePolling**: /// if set to *true*, the replication applier will fall\n /// to sleep for an increasingly long period in case the logger server at the\n /// endpoint does not have any more replication events to apply. Using\n /// adaptive polling is thus useful to reduce the amount of work for both the\n /// applier and the logger server for cases when there are only infrequent\n /// changes. The downside is that when using adaptive polling, it might take\n /// longer for the replication applier to detect that there are new replication\n /// events on the logger server.\n ///\n /// Setting *adaptivePolling* to false will make the replication applier\n /// contact the logger server in a constant interval, regardless of whether\n /// the logger server provides updates frequently or seldom.\n ///\n - **password**: /// the password to use when connecting to the endpoint.\n ///\n - **connectionRetryWaitTime**: /// the time (in seconds) that the applier will intentionally idle before\n /// it retries connecting to the master in case of connection problems.\n /// This value will be ignored if set to *0*.\n ///\n - **autoResyncRetries**: /// number of resynchronization retries that will be performed in a row when\n /// automatic resynchronization is enabled and kicks in. Setting this to *0*\n /// will\n /// effectively disable *autoResync*. Setting it to some other value will limit\n /// the number of retries that are performed. This helps preventing endless\n /// retries\n /// in case resynchronizations always fail.\n ///\n - **chunkSize**: /// the requested maximum size for log transfer packets that\n /// is used when the endpoint is contacted.\n ///\n\n\n\n\n/// Sets the configuration of the replication applier. The configuration can\n/// only be changed while the applier is not running. The updated configuration\n/// will be saved immediately but only become active with the next start of the\n/// applier.\n///\n/// In case of success, the body of the response is a JSON object with the updated\n/// configuration.\n///\n\nExample: ///
shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/replication/applier-config <<EOF\n{ \n \"endpoint\" : \"tcp://127.0.0.1:8529\", \n \"username\" : \"replicationApplier\", \n \"password\" : \"applier1234@foxx\", \n \"chunkSize\" : 4194304, \n \"autoStart\" : false, \n \"adaptivePolling\" : true \n}\nEOF\n\nHTTP/1.1 200 OK\ncontent-type: application/json; charset=utf-8\n\n{ \n \"adaptivePolling\" : true, \n \"autoResync\" : false, \n \"autoResyncRetries\" : 2, \n \"autoStart\" : false, \n \"chunkSize\" : 4194304, \n \"connectTimeout\" : 10, \n \"connectionRetryWaitTime\" : 15, \n \"database\" : \"_system\", \n \"endpoint\" : \"tcp://127.0.0.1:8529\", \n \"idleMaxWaitTime\" : 2.5, \n \"idleMinWaitTime\" : 0.5, \n \"ignoreErrors\" : 0, \n \"includeSystem\" : true, \n \"initialSyncMaxWaitTime\" : 300, \n \"maxConnectRetries\" : 100, \n \"requestTimeout\" : 600, \n \"requireFromPresent\" : false, \n \"restrictCollections\" : [ ], \n \"restrictType\" : \"\", \n \"sslProtocol\" : 0, \n \"username\" : \"replicationApplier\", \n \"verbose\" : false \n}\n
\n/// \n///////////////////////////////////////////////////////////////////////////////\n",
@@ -5991,7 +6231,7 @@
"Replication"
],
"x-examples": [],
- "x-filename": "Replication - ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_return_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_post_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_start.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_serverID.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_stop.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_synchronize.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_adjust.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_makeSlave.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_delete_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_dump.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_returns.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_cluster_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_applier_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_first_tick.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_tick_ranges.md"
+ "x-filename": "Replication - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_post_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_delete_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_makeSlave.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_applier_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_returns.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_adjust.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_first_tick.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_stop.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_serverID.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_synchronize.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_cluster_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_return_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_tick_ranges.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_dump.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_start.md"
}
},
"/_api/replication/applier-start": {
@@ -6025,7 +6265,7 @@
"Replication"
],
"x-examples": [],
- "x-filename": "Replication - ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_return_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_post_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_start.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_serverID.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_stop.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_synchronize.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_adjust.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_makeSlave.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_delete_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_dump.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_returns.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_cluster_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_applier_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_first_tick.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_tick_ranges.md"
+ "x-filename": "Replication - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_post_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_delete_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_makeSlave.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_applier_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_returns.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_adjust.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_first_tick.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_stop.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_serverID.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_synchronize.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_cluster_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_return_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_tick_ranges.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_dump.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_start.md"
}
},
"/_api/replication/applier-state": {
@@ -6048,7 +6288,7 @@
"Replication"
],
"x-examples": [],
- "x-filename": "Replication - ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_return_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_post_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_start.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_serverID.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_stop.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_synchronize.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_adjust.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_makeSlave.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_delete_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_dump.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_returns.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_cluster_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_applier_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_first_tick.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_tick_ranges.md"
+ "x-filename": "Replication - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_post_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_delete_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_makeSlave.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_applier_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_returns.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_adjust.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_first_tick.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_stop.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_serverID.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_synchronize.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_cluster_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_return_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_tick_ranges.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_dump.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_start.md"
}
},
"/_api/replication/applier-stop": {
@@ -6071,7 +6311,7 @@
"Replication"
],
"x-examples": [],
- "x-filename": "Replication - ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_return_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_post_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_start.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_serverID.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_stop.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_synchronize.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_adjust.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_makeSlave.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_delete_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_dump.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_returns.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_cluster_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_applier_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_first_tick.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_tick_ranges.md"
+ "x-filename": "Replication - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_post_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_delete_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_makeSlave.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_applier_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_returns.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_adjust.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_first_tick.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_stop.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_serverID.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_synchronize.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_cluster_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_return_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_tick_ranges.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_dump.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_start.md"
}
},
"/_api/replication/batch": {
@@ -6104,7 +6344,7 @@
"Replication"
],
"x-examples": [],
- "x-filename": "Replication - ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_return_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_post_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_start.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_serverID.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_stop.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_synchronize.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_adjust.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_makeSlave.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_delete_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_dump.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_returns.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_cluster_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_applier_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_first_tick.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_tick_ranges.md"
+ "x-filename": "Replication - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_post_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_delete_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_makeSlave.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_applier_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_returns.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_adjust.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_first_tick.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_stop.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_serverID.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_synchronize.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_cluster_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_return_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_tick_ranges.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_dump.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_start.md"
}
},
"/_api/replication/batch/{id}": {
@@ -6136,7 +6376,7 @@
"Replication"
],
"x-examples": [],
- "x-filename": "Replication - ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_return_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_post_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_start.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_serverID.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_stop.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_synchronize.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_adjust.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_makeSlave.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_delete_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_dump.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_returns.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_cluster_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_applier_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_first_tick.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_tick_ranges.md"
+ "x-filename": "Replication - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_post_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_delete_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_makeSlave.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_applier_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_returns.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_adjust.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_first_tick.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_stop.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_serverID.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_synchronize.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_cluster_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_return_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_tick_ranges.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_dump.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_start.md"
},
"put": {
"description": "**A json post document with these Properties is required:**\n\n - **ttl**: /// the time-to-live for the new batch (in seconds)\n ///\n\n\n\n\n/// Extends the ttl of an existing dump batch, using the batch's id and\n/// the provided ttl value.\n///\n/// If the batch's ttl can be extended successfully, the response is empty.\n///\n/// **Note**: on a coordinator, this request must have the query parameter\n/// *DBserver* which must be an ID of a DBserver.\n/// The very same request is forwarded synchronously to that DBserver.\n/// It is an error if this attribute is not bound in the coordinator case.\n///\n",
@@ -6175,7 +6415,7 @@
"Replication"
],
"x-examples": [],
- "x-filename": "Replication - ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_return_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_post_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_start.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_serverID.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_stop.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_synchronize.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_adjust.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_makeSlave.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_delete_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_dump.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_returns.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_cluster_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_applier_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_first_tick.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_tick_ranges.md"
+ "x-filename": "Replication - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_post_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_delete_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_makeSlave.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_applier_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_returns.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_adjust.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_first_tick.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_stop.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_serverID.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_synchronize.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_cluster_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_return_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_tick_ranges.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_dump.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_start.md"
}
},
"/_api/replication/clusterInventory": {
@@ -6206,7 +6446,7 @@
"Replication"
],
"x-examples": [],
- "x-filename": "Replication - ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_return_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_post_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_start.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_serverID.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_stop.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_synchronize.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_adjust.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_makeSlave.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_delete_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_dump.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_returns.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_cluster_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_applier_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_first_tick.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_tick_ranges.md"
+ "x-filename": "Replication - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_post_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_delete_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_makeSlave.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_applier_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_returns.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_adjust.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_first_tick.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_stop.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_serverID.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_synchronize.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_cluster_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_return_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_tick_ranges.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_dump.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_start.md"
}
},
"/_api/replication/dump": {
@@ -6295,7 +6535,7 @@
"Replication"
],
"x-examples": [],
- "x-filename": "Replication - ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_return_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_post_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_start.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_serverID.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_stop.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_synchronize.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_adjust.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_makeSlave.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_delete_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_dump.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_returns.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_cluster_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_applier_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_first_tick.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_tick_ranges.md"
+ "x-filename": "Replication - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_post_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_delete_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_makeSlave.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_applier_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_returns.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_adjust.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_first_tick.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_stop.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_serverID.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_synchronize.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_cluster_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_return_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_tick_ranges.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_dump.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_start.md"
}
},
"/_api/replication/inventory": {
@@ -6326,7 +6566,7 @@
"Replication"
],
"x-examples": [],
- "x-filename": "Replication - ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_return_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_post_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_start.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_serverID.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_stop.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_synchronize.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_adjust.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_makeSlave.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_delete_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_dump.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_returns.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_cluster_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_applier_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_first_tick.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_tick_ranges.md"
+ "x-filename": "Replication - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_post_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_delete_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_makeSlave.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_applier_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_returns.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_adjust.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_first_tick.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_stop.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_serverID.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_synchronize.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_cluster_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_return_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_tick_ranges.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_dump.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_start.md"
}
},
"/_api/replication/logger-first-tick": {
@@ -6352,7 +6592,7 @@
"Replication"
],
"x-examples": [],
- "x-filename": "Replication - ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_return_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_post_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_start.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_serverID.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_stop.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_synchronize.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_adjust.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_makeSlave.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_delete_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_dump.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_returns.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_cluster_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_applier_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_first_tick.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_tick_ranges.md"
+ "x-filename": "Replication - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_post_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_delete_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_makeSlave.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_applier_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_returns.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_adjust.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_first_tick.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_stop.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_serverID.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_synchronize.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_cluster_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_return_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_tick_ranges.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_dump.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_start.md"
}
},
"/_api/replication/logger-follow": {
@@ -6413,7 +6653,7 @@
"Replication"
],
"x-examples": [],
- "x-filename": "Replication - ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_return_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_post_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_start.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_serverID.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_stop.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_synchronize.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_adjust.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_makeSlave.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_delete_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_dump.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_returns.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_cluster_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_applier_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_first_tick.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_tick_ranges.md"
+ "x-filename": "Replication - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_post_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_delete_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_makeSlave.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_applier_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_returns.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_adjust.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_first_tick.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_stop.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_serverID.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_synchronize.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_cluster_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_return_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_tick_ranges.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_dump.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_start.md"
}
},
"/_api/replication/logger-state": {
@@ -6436,7 +6676,7 @@
"Replication"
],
"x-examples": [],
- "x-filename": "Replication - ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_return_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_post_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_start.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_serverID.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_stop.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_synchronize.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_adjust.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_makeSlave.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_delete_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_dump.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_returns.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_cluster_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_applier_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_first_tick.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_tick_ranges.md"
+ "x-filename": "Replication - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_post_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_delete_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_makeSlave.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_applier_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_returns.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_adjust.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_first_tick.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_stop.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_serverID.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_synchronize.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_cluster_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_return_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_tick_ranges.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_dump.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_start.md"
}
},
"/_api/replication/logger-tick-ranges": {
@@ -6462,7 +6702,7 @@
"Replication"
],
"x-examples": [],
- "x-filename": "Replication - ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_return_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_post_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_start.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_serverID.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_stop.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_synchronize.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_adjust.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_makeSlave.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_delete_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_dump.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_returns.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_cluster_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_applier_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_first_tick.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_tick_ranges.md"
+ "x-filename": "Replication - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_post_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_delete_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_makeSlave.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_applier_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_returns.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_adjust.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_first_tick.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_stop.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_serverID.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_synchronize.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_cluster_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_return_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_tick_ranges.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_dump.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_start.md"
}
},
"/_api/replication/make-slave": {
@@ -6501,7 +6741,7 @@
"Replication"
],
"x-examples": [],
- "x-filename": "Replication - ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_return_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_post_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_start.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_serverID.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_stop.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_synchronize.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_adjust.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_makeSlave.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_delete_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_dump.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_returns.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_cluster_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_applier_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_first_tick.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_tick_ranges.md"
+ "x-filename": "Replication - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_post_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_delete_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_makeSlave.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_applier_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_returns.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_adjust.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_first_tick.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_stop.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_serverID.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_synchronize.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_cluster_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_return_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_tick_ranges.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_dump.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_start.md"
}
},
"/_api/replication/server-id": {
@@ -6524,7 +6764,7 @@
"Replication"
],
"x-examples": [],
- "x-filename": "Replication - ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_return_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_post_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_start.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_serverID.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_stop.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_synchronize.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_adjust.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_makeSlave.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_delete_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_dump.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_returns.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_cluster_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_applier_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_first_tick.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_tick_ranges.md"
+ "x-filename": "Replication - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_post_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_delete_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_makeSlave.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_applier_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_returns.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_adjust.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_first_tick.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_stop.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_serverID.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_synchronize.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_cluster_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_return_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_tick_ranges.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_dump.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_start.md"
}
},
"/_api/replication/sync": {
@@ -6563,7 +6803,7 @@
"Replication"
],
"x-examples": [],
- "x-filename": "Replication - ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_return_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_post_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_start.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_serverID.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_stop.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_synchronize.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier_adjust.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_makeSlave.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_delete_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_api_replication_applier.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_dump.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_returns.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_cluster_inventory.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_applier_state.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_put_batch_replication.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_first_tick.md, ./Documentation/DocuBlocks/Rest//Replication/JSF_get_api_replication_logger_tick_ranges.md"
+ "x-filename": "Replication - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_post_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_delete_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_makeSlave.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_applier_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_returns.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_adjust.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_first_tick.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_stop.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_batch_replication.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_serverID.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_synchronize.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_cluster_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_return_state.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_logger_tick_ranges.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_inventory.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_get_api_replication_dump.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Replication/JSF_put_api_replication_applier_start.md"
}
},
"/_api/simple/all": {
@@ -6598,7 +6838,7 @@
"Simple Queries"
],
"x-examples": [],
- "x-filename": "Simple Queries - ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_remove_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_all.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_range.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_any.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within_rectangle.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestRemoveByKeys.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_replace_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_near.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_fulltext.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_last.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_update_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestLookupByKeys.md"
+ "x-filename": "Simple Queries - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestLookupByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_any.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within_rectangle.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_all.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_remove_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_near.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestRemoveByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_update_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_range.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_replace_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_fulltext.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_last.md"
}
},
"/_api/simple/any": {
@@ -6631,7 +6871,7 @@
"Simple Queries"
],
"x-examples": [],
- "x-filename": "Simple Queries - ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_remove_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_all.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_range.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_any.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within_rectangle.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestRemoveByKeys.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_replace_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_near.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_fulltext.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_last.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_update_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestLookupByKeys.md"
+ "x-filename": "Simple Queries - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestLookupByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_any.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within_rectangle.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_all.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_remove_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_near.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestRemoveByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_update_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_range.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_replace_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_fulltext.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_last.md"
}
},
"/_api/simple/by-example": {
@@ -6664,7 +6904,7 @@
"Simple Queries"
],
"x-examples": [],
- "x-filename": "Simple Queries - ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_remove_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_all.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_range.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_any.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within_rectangle.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestRemoveByKeys.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_replace_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_near.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_fulltext.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_last.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_update_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestLookupByKeys.md"
+ "x-filename": "Simple Queries - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestLookupByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_any.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within_rectangle.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_all.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_remove_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_near.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestRemoveByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_update_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_range.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_replace_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_fulltext.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_last.md"
}
},
"/_api/simple/first": {
@@ -6697,7 +6937,7 @@
"Simple Queries"
],
"x-examples": [],
- "x-filename": "Simple Queries - ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_remove_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_all.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_range.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_any.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within_rectangle.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestRemoveByKeys.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_replace_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_near.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_fulltext.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_last.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_update_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestLookupByKeys.md"
+ "x-filename": "Simple Queries - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestLookupByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_any.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within_rectangle.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_all.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_remove_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_near.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestRemoveByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_update_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_range.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_replace_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_fulltext.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_last.md"
}
},
"/_api/simple/first-example": {
@@ -6730,7 +6970,7 @@
"Simple Queries"
],
"x-examples": [],
- "x-filename": "Simple Queries - ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_remove_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_all.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_range.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_any.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within_rectangle.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestRemoveByKeys.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_replace_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_near.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_fulltext.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_last.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_update_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestLookupByKeys.md"
+ "x-filename": "Simple Queries - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestLookupByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_any.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within_rectangle.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_all.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_remove_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_near.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestRemoveByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_update_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_range.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_replace_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_fulltext.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_last.md"
}
},
"/_api/simple/fulltext": {
@@ -6763,7 +7003,7 @@
"Simple Queries"
],
"x-examples": [],
- "x-filename": "Simple Queries - ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_remove_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_all.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_range.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_any.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within_rectangle.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestRemoveByKeys.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_replace_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_near.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_fulltext.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_last.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_update_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestLookupByKeys.md"
+ "x-filename": "Simple Queries - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestLookupByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_any.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within_rectangle.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_all.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_remove_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_near.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestRemoveByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_update_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_range.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_replace_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_fulltext.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_last.md"
}
},
"/_api/simple/last": {
@@ -6796,7 +7036,7 @@
"Simple Queries"
],
"x-examples": [],
- "x-filename": "Simple Queries - ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_remove_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_all.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_range.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_any.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within_rectangle.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestRemoveByKeys.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_replace_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_near.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_fulltext.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_last.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_update_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestLookupByKeys.md"
+ "x-filename": "Simple Queries - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestLookupByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_any.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within_rectangle.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_all.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_remove_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_near.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestRemoveByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_update_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_range.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_replace_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_fulltext.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_last.md"
}
},
"/_api/simple/lookup-by-keys": {
@@ -6829,7 +7069,7 @@
"Simple Queries"
],
"x-examples": [],
- "x-filename": "Simple Queries - ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_remove_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_all.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_range.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_any.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within_rectangle.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestRemoveByKeys.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_replace_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_near.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_fulltext.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_last.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_update_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestLookupByKeys.md"
+ "x-filename": "Simple Queries - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestLookupByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_any.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within_rectangle.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_all.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_remove_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_near.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestRemoveByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_update_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_range.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_replace_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_fulltext.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_last.md"
}
},
"/_api/simple/near": {
@@ -6862,7 +7102,7 @@
"Simple Queries"
],
"x-examples": [],
- "x-filename": "Simple Queries - ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_remove_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_all.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_range.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_any.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within_rectangle.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestRemoveByKeys.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_replace_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_near.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_fulltext.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_last.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_update_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestLookupByKeys.md"
+ "x-filename": "Simple Queries - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestLookupByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_any.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within_rectangle.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_all.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_remove_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_near.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestRemoveByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_update_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_range.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_replace_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_fulltext.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_last.md"
}
},
"/_api/simple/range": {
@@ -6895,12 +7135,12 @@
"Simple Queries"
],
"x-examples": [],
- "x-filename": "Simple Queries - ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_remove_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_all.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_range.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_any.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within_rectangle.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestRemoveByKeys.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_replace_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_near.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_fulltext.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_last.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_update_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestLookupByKeys.md"
+ "x-filename": "Simple Queries - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestLookupByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_any.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within_rectangle.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_all.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_remove_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_near.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestRemoveByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_update_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_range.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_replace_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_fulltext.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_last.md"
}
},
"/_api/simple/remove-by-example": {
"put": {
- "description": "**A json post document with these Properties is required:**\n\n - **example**: /// An example document that all collection documents are compared against.\n ///\n - **collection**: /// The name of the collection to remove from.\n ///\n - **options**:\n - **limit**: /// an optional value that determines how many documents to\n /// delete at most. If *limit* is specified but is less than the number\n /// of documents in the collection, it is undefined which of the documents\n /// will be deleted.\n ///\n - **waitForSync**: /// if set to true, then all removal operations will\n /// instantly be synchronized to disk. If this is not specified, then the\n /// collection's default sync behavior will be applied.\n ///\n\n\n\n\n///\n/// This will find all documents in the collection that match the specified\n/// example object.\n///\n/// Note: the *limit* attribute is not supported on sharded collections.\n/// Using it will result in an error.\n///\n/// Returns the number of documents that were deleted.\n///\n\nExample: ///
shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/simple/remove-by-example <<EOF\n{ \n \"collection\" : \"products\", \n \"example\" : { \n \"a\" : { \n \"j\" : 1 \n } \n } \n}\nEOF\n\nHTTP/1.1 200 OK\ncontent-type: application/json; charset=utf-8\n\n{ \n \"deleted\" : 1, \n \"error\" : false, \n \"code\" : 200 \n}\n
\nExample: ///\n/// Using Parameter: waitForSync and limit\n///
shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/simple/remove-by-example <<EOF\n{ \n \"collection\" : \"products\", \n \"example\" : { \n \"a\" : { \n \"j\" : 1 \n } \n }, \n \"waitForSync\" : true, \n \"limit\" : 2 \n}\nEOF\n\nHTTP/1.1 200 OK\ncontent-type: application/json; charset=utf-8\n\n{ \n \"deleted\" : 1, \n \"error\" : false, \n \"code\" : 200 \n}\n
\nExample: ///\n/// Using Parameter: waitForSync and limit with new signature\n///
shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/simple/remove-by-example <<EOF\n{ \n \"collection\" : \"products\", \n \"example\" : { \n \"a\" : { \n \"j\" : 1 \n } \n }, \n \"options\" : { \n \"waitForSync\" : true, \n \"limit\" : 2 \n } \n}\nEOF\n\nHTTP/1.1 200 OK\ncontent-type: application/json; charset=utf-8\n\n{ \n \"deleted\" : 1, \n \"error\" : false, \n \"code\" : 200 \n}\n
\n/// \n///////////////////////////////////////////////////////////////////////////////\n",
+ "description": "**A json post document with these Properties is required:**\n\n - **example**: /// An example document that all collection documents are compared against.\n ///\n - **collection**: /// The name of the collection to remove from.\n ///\n - **options**:\n - **limit**: /// an optional value that determines how many documents to\n /// delete at most. If *limit* is specified but is less than the number\n /// of documents in the collection, it is undefined which of the documents\n /// will be deleted.\n ///\n - **waitForSync**: /// if set to true, then all removal operations will\n /// instantly be synchronized to disk. If this is not specified, then the\n /// collection's default sync behavior will be applied.\n ///\n\n\n\n\n///\n/// This will find all documents in the collection that match the specified\n/// example object.\n///\n/// Note: the *limit* attribute is not supported on sharded collections.\n/// Using it will result in an error.\n///\n/// Returns the number of documents that were deleted.\n///\n\nExample: ///
shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/simple/remove-by-example <<EOF\n{ \n \"collection\" : \"products\", \n \"example\" : { \n \"a\" : { \n \"j\" : 1 \n } \n } \n}\nEOF\n\nHTTP/1.1 200 OK\ncontent-type: application/json; charset=utf-8\n\n{ \n \"deleted\" : 1, \n \"error\" : false, \n \"code\" : 200 \n}\n
\nExample: ///\n/// Using Parameter: waitForSync and limit\n///
shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/simple/remove-by-example <<EOF\n{ \n \"collection\" : \"products\", \n \"example\" : { \n \"a\" : { \n \"j\" : 1 \n } \n }, \n \"waitForSync\" : true, \n \"limit\" : 2 \n}\nEOF\n\nHTTP/1.1 200 OK\ncontent-type: application/json; charset=utf-8\n\n{ \n \"deleted\" : 1, \n \"error\" : false, \n \"code\" : 200 \n}\n
\nExample: ///\n/// Using Parameter: waitForSync and limit with new signature\n///
shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/simple/remove-by-example <<EOF\n{ \n \"collection\" : \"products\", \n \"example\" : { \n \"a\" : { \n \"j\" : 1 \n } \n }, \n \"options\" : { \n \"waitForSync\" : true, \n \"limit\" : 2 \n } \n}\nEOF\n\nHTTP/1.1 200 OK\ncontent-type: application/json; charset=utf-8\n\n{ \n \"deleted\" : 1, \n \"error\" : false, \n \"code\" : 200 \n}\n
\n/// \n////////////////////////////////////////////////////////////////////////////////\n",
"parameters": [
{
"in": "body",
@@ -6928,12 +7168,12 @@
"Simple Queries"
],
"x-examples": [],
- "x-filename": "Simple Queries - ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_remove_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_all.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_range.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_any.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within_rectangle.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestRemoveByKeys.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_replace_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_near.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_fulltext.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_last.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_update_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestLookupByKeys.md"
+ "x-filename": "Simple Queries - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestLookupByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_any.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within_rectangle.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_all.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_remove_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_near.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestRemoveByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_update_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_range.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_replace_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_fulltext.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_last.md"
}
},
"/_api/simple/remove-by-keys": {
"put": {
- "description": "**A json post document with these Properties is required:**\n\n - **keys**: /// array with the _keys of documents to remove.\n /// of type string\n - **options**:\n - **waitForSync**: /// if set to true, then all removal operations will\n /// instantly be synchronized to disk. If this is not specified, then the\n /// collection's default sync behavior will be applied.\n ///\n - **collection**: /// The name of the collection to look in for the documents to remove\n ///\n\n\n\n\n/// Looks up the documents in the specified collection using the array of keys\n/// provided, and removes all documents from the collection whose keys are\n/// contained in the *keys* array. Keys for which no document can be found in\n/// the underlying collection are ignored, and no exception will be thrown for\n/// them.\n///\n/// The body of the response contains a JSON object with information how many\n/// documents were removed (and how many were not). The *removed* attribute will\n/// contain the number of actually removed documents. The *ignored* attribute \n/// will contain the number of keys in the request for which no matching document\n/// could be found.\n///\n\nExample: ///
shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/simple/remove-by-keys <<EOF\n{ \n \"keys\" : [ \n \"test0\", \n \"test1\", \n \"test2\", \n \"test3\", \n \"test4\", \n \"test5\", \n \"test6\", \n \"test7\", \n \"test8\", \n \"test9\" \n ], \n \"collection\" : \"test\" \n}\nEOF\n\nHTTP/1.1 200 OK\ncontent-type: application/json; charset=utf-8\n\n{ \n \"code\" : 200, \n \"error\" : false, \n \"ignored\" : 0, \n \"removed\" : 10 \n}\n
\nExample: ///
shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/simple/remove-by-keys <<EOF\n{ \n \"keys\" : [ \n \"foo\", \n \"bar\", \n \"baz\" \n ], \n \"collection\" : \"test\" \n}\nEOF\n\nHTTP/1.1 200 OK\ncontent-type: application/json; charset=utf-8\n\n{ \n \"code\" : 200, \n \"error\" : false, \n \"ignored\" : 3, \n \"removed\" : 0 \n}\n
\n///\n/// \n///////////////////////////////////////////////////////////////////////////////\n",
+ "description": "**A json post document with these Properties is required:**\n\n - **keys**: /// array with the _keys of documents to remove.\n /// of type string\n - **options**:\n - **returnOld**: /// if set to *true* and *silent* above is *false*, then the above\n /// information about the removed documents contains the complete\n /// removed documents.\n ///\n - **silent**: /// if set to *false*, then the result will contain an additional\n /// attribute *old* which contains an array with one entry for each\n /// removed document. By default, these entries will have the *_id*,\n /// *_key* and *_rev* attributes.\n ///\n - **waitForSync**: /// if set to true, then all removal operations will\n /// instantly be synchronized to disk. If this is not specified, then the\n /// collection's default sync behavior will be applied.\n ///\n - **collection**: /// The name of the collection to look in for the documents to remove\n ///\n\n\n\n\n/// Looks up the documents in the specified collection using the array of keys\n/// provided, and removes all documents from the collection whose keys are\n/// contained in the *keys* array. Keys for which no document can be found in\n/// the underlying collection are ignored, and no exception will be thrown for\n/// them.\n///\n/// The body of the response contains a JSON object with information how many\n/// documents were removed (and how many were not). The *removed* attribute will\n/// contain the number of actually removed documents. The *ignored* attribute \n/// will contain the number of keys in the request for which no matching document\n/// could be found.\n///\n\nExample: ///
shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/simple/remove-by-keys <<EOF\n{ \n \"keys\" : [ \n \"test0\", \n \"test1\", \n \"test2\", \n \"test3\", \n \"test4\", \n \"test5\", \n \"test6\", \n \"test7\", \n \"test8\", \n \"test9\" \n ], \n \"collection\" : \"test\" \n}\nEOF\n\nHTTP/1.1 200 OK\ncontent-type: application/json; charset=utf-8\n\n{ \n \"code\" : 200, \n \"error\" : false, \n \"ignored\" : 0, \n \"removed\" : 10 \n}\n
\nExample: ///
shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/simple/remove-by-keys <<EOF\n{ \n \"keys\" : [ \n \"foo\", \n \"bar\", \n \"baz\" \n ], \n \"collection\" : \"test\" \n}\nEOF\n\nHTTP/1.1 200 OK\ncontent-type: application/json; charset=utf-8\n\n{ \n \"code\" : 200, \n \"error\" : false, \n \"ignored\" : 3, \n \"removed\" : 0 \n}\n
\n///\n/// \n////////////////////////////////////////////////////////////////////////////////\n",
"parameters": [
{
"in": "body",
@@ -6961,7 +7201,7 @@
"Simple Queries"
],
"x-examples": [],
- "x-filename": "Simple Queries - ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_remove_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_all.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_range.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_any.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within_rectangle.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestRemoveByKeys.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_replace_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_near.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_fulltext.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_last.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_update_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestLookupByKeys.md"
+ "x-filename": "Simple Queries - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestLookupByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_any.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within_rectangle.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_all.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_remove_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_near.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestRemoveByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_update_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_range.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_replace_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_fulltext.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_last.md"
}
},
"/_api/simple/replace-by-example": {
@@ -6994,12 +7234,12 @@
"Simple Queries"
],
"x-examples": [],
- "x-filename": "Simple Queries - ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_remove_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_all.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_range.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_any.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within_rectangle.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestRemoveByKeys.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_replace_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_near.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_fulltext.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_last.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_update_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestLookupByKeys.md"
+ "x-filename": "Simple Queries - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestLookupByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_any.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within_rectangle.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_all.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_remove_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_near.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestRemoveByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_update_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_range.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_replace_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_fulltext.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_last.md"
}
},
"/_api/simple/update-by-example": {
"put": {
- "description": "**A json post document with these Properties is required:**\n\n - **options**:\n - **keepNull**: /// This parameter can be used to modify the behavior when\n /// handling *null* values. Normally, *null* values are stored in the\n /// database. By setting the *keepNull* parameter to *false*, this\n /// behavior can be changed so that all attributes in *data* with *null*\n /// values will be removed from the updated document.\n ///\n - **mergeObjects**: /// Controls whether objects (not arrays) will be merged if present in both the\n /// existing and the patch document. If set to false, the value in the\n /// patch document will overwrite the existing document's value. If set to\n /// true, objects will be merged. The default is true.\n ///\n - **limit**: /// an optional value that determines how many documents to\n /// update at most. If *limit* is specified but is less than the number\n /// of documents in the collection, it is undefined which of the documents\n /// will be updated.\n ///\n - **waitForSync**: /// if set to true, then all removal operations will\n /// instantly be synchronized to disk. If this is not specified, then the\n /// collection's default sync behavior will be applied.\n ///\n - **example**: /// An example document that all collection documents are compared against.\n ///\n - **collection**: /// The name of the collection to update within.\n ///\n - **newValue**: /// A document containing all the attributes to update in the found documents.\n ///\n\n\n\n\n///\n/// This will find all documents in the collection that match the specified\n/// example object, and partially update the document body with the new value\n/// specified. Note that document meta-attributes such as *_id*, *_key*,\n/// *_from*, *_to* etc. cannot be replaced.\n///\n/// Note: the *limit* attribute is not supported on sharded collections.\n/// Using it will result in an error.\n///\n/// Returns the number of documents that were updated.\n///\n///\n\nExample: ///\n/// using old syntax for options\n///
shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/simple/update-by-example <<EOF\n{ \n \"collection\" : \"products\", \n \"example\" : { \n \"a\" : { \n \"j\" : 1 \n } \n }, \n \"newValue\" : { \n \"a\" : { \n \"j\" : 22 \n } \n }, \n \"limit\" : 3 \n}\nEOF\n\nHTTP/1.1 200 OK\ncontent-type: application/json; charset=utf-8\n\n{ \n \"updated\" : 1, \n \"error\" : false, \n \"code\" : 200 \n}\n
\nExample: ///\n/// using new signature for options\n///
shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/simple/update-by-example <<EOF\n{ \n \"collection\" : \"products\", \n \"example\" : { \n \"a\" : { \n \"j\" : 1 \n } \n }, \n \"newValue\" : { \n \"a\" : { \n \"j\" : 22 \n } \n }, \n \"options\" : { \n \"limit\" : 3, \n \"waitForSync\" : true \n } \n}\nEOF\n\nHTTP/1.1 200 OK\ncontent-type: application/json; charset=utf-8\n\n{ \n \"updated\" : 1, \n \"error\" : false, \n \"code\" : 200 \n}\n
\n/// \n///////////////////////////////////////////////////////////////////////////////\n",
+ "description": "**A json post document with these Properties is required:**\n\n - **options**:\n - **keepNull**: /// This parameter can be used to modify the behavior when\n /// handling *null* values. Normally, *null* values are stored in the\n /// database. By setting the *keepNull* parameter to *false*, this\n /// behavior can be changed so that all attributes in *data* with *null*\n /// values will be removed from the updated document.\n ///\n - **mergeObjects**: /// Controls whether objects (not arrays) will be merged if present in both the\n /// existing and the patch document. If set to false, the value in the\n /// patch document will overwrite the existing document's value. If set to\n /// true, objects will be merged. The default is true.\n ///\n - **limit**: /// an optional value that determines how many documents to\n /// update at most. If *limit* is specified but is less than the number\n /// of documents in the collection, it is undefined which of the documents\n /// will be updated.\n ///\n - **waitForSync**: /// if set to true, then all removal operations will\n /// instantly be synchronized to disk. If this is not specified, then the\n /// collection's default sync behavior will be applied.\n ///\n - **example**: /// An example document that all collection documents are compared against.\n ///\n - **collection**: /// The name of the collection to update within.\n ///\n - **newValue**: /// A document containing all the attributes to update in the found documents.\n ///\n\n\n\n\n///\n/// This will find all documents in the collection that match the specified\n/// example object, and partially update the document body with the new value\n/// specified. Note that document meta-attributes such as *_id*, *_key*,\n/// *_from*, *_to* etc. cannot be replaced.\n///\n/// Note: the *limit* attribute is not supported on sharded collections.\n/// Using it will result in an error.\n///\n/// Returns the number of documents that were updated.\n///\n///\n\nExample: ///\n/// using old syntax for options\n///
shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/simple/update-by-example <<EOF\n{ \n \"collection\" : \"products\", \n \"example\" : { \n \"a\" : { \n \"j\" : 1 \n } \n }, \n \"newValue\" : { \n \"a\" : { \n \"j\" : 22 \n } \n }, \n \"limit\" : 3 \n}\nEOF\n\nHTTP/1.1 200 OK\ncontent-type: application/json; charset=utf-8\n\n{ \n \"updated\" : 1, \n \"error\" : false, \n \"code\" : 200 \n}\n
\nExample: ///\n/// using new signature for options\n///
shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/simple/update-by-example <<EOF\n{ \n \"collection\" : \"products\", \n \"example\" : { \n \"a\" : { \n \"j\" : 1 \n } \n }, \n \"newValue\" : { \n \"a\" : { \n \"j\" : 22 \n } \n }, \n \"options\" : { \n \"limit\" : 3, \n \"waitForSync\" : true \n } \n}\nEOF\n\nHTTP/1.1 200 OK\ncontent-type: application/json; charset=utf-8\n\n{ \n \"updated\" : 1, \n \"error\" : false, \n \"code\" : 200 \n}\n
\n/// \n////////////////////////////////////////////////////////////////////////////////\n",
"parameters": [
{
"in": "body",
@@ -7027,7 +7267,7 @@
"Simple Queries"
],
"x-examples": [],
- "x-filename": "Simple Queries - ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_remove_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_all.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_range.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_any.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within_rectangle.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestRemoveByKeys.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_replace_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_near.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_fulltext.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_last.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_update_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestLookupByKeys.md"
+ "x-filename": "Simple Queries - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestLookupByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_any.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within_rectangle.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_all.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_remove_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_near.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestRemoveByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_update_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_range.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_replace_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_fulltext.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_last.md"
}
},
"/_api/simple/within": {
@@ -7060,7 +7300,7 @@
"Simple Queries"
],
"x-examples": [],
- "x-filename": "Simple Queries - ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_remove_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_all.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_range.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_any.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within_rectangle.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestRemoveByKeys.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_replace_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_near.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_fulltext.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_last.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_update_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestLookupByKeys.md"
+ "x-filename": "Simple Queries - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestLookupByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_any.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within_rectangle.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_all.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_remove_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_near.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestRemoveByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_update_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_range.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_replace_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_fulltext.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_last.md"
}
},
"/_api/simple/within-rectangle": {
@@ -7093,7 +7333,7 @@
"Simple Queries"
],
"x-examples": [],
- "x-filename": "Simple Queries - ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_remove_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_all.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_range.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_any.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_within_rectangle.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestRemoveByKeys.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_replace_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_first_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_near.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_fulltext.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_last.md, ./Documentation/DocuBlocks/Rest//Simple Queries/JSA_put_api_simple_update_by_example.md, ./Documentation/DocuBlocks/Rest//Simple Queries/RestLookupByKeys.md"
+ "x-filename": "Simple Queries - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestLookupByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_any.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within_rectangle.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_all.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_remove_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_near.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/RestRemoveByKeys.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_within.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_update_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_range.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_replace_by_example.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_fulltext.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_first.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Simple Queries/JSA_put_api_simple_last.md"
}
},
"/_api/tasks": {
@@ -7120,7 +7360,7 @@
"Administration"
],
"x-examples": [],
- "x-filename": "Administration - ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_statistics.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_database_version.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_endpoint.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_time.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_post_admin_test.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_post_api_new_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_server_role.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_sleep.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_tasks_all.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_echo.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_long_echo.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_post_admin_execute.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_modules_flush.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_routing_reloads.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_statistics_description.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_delete_api_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_put_api_new_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_return.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_initiate.md"
+ "x-filename": "Administration - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_modules_flush.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_post_admin_execute.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_server_role.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_database_version.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_echo.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_delete_api_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_post_api_new_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_long_echo.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_routing_reloads.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_return.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_post_admin_test.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_time.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_endpoint.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_sleep.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_put_api_new_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_statistics.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_tasks_all.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_statistics_description.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_initiate.md"
}
},
"/_api/tasks/": {
@@ -7137,7 +7377,7 @@
"Administration"
],
"x-examples": [],
- "x-filename": "Administration - ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_statistics.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_database_version.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_endpoint.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_time.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_post_admin_test.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_post_api_new_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_server_role.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_sleep.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_tasks_all.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_echo.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_long_echo.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_post_admin_execute.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_modules_flush.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_routing_reloads.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_statistics_description.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_delete_api_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_put_api_new_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_return.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_initiate.md"
+ "x-filename": "Administration - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_modules_flush.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_post_admin_execute.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_server_role.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_database_version.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_echo.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_delete_api_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_post_api_new_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_long_echo.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_routing_reloads.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_return.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_post_admin_test.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_time.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_endpoint.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_sleep.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_put_api_new_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_statistics.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_tasks_all.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_statistics_description.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_initiate.md"
}
},
"/_api/tasks/{id}": {
@@ -7163,7 +7403,7 @@
"Administration"
],
"x-examples": [],
- "x-filename": "Administration - ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_statistics.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_database_version.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_endpoint.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_time.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_post_admin_test.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_post_api_new_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_server_role.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_sleep.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_tasks_all.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_echo.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_long_echo.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_post_admin_execute.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_modules_flush.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_routing_reloads.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_statistics_description.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_delete_api_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_put_api_new_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_return.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_initiate.md"
+ "x-filename": "Administration - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_modules_flush.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_post_admin_execute.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_server_role.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_database_version.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_echo.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_delete_api_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_post_api_new_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_long_echo.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_routing_reloads.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_return.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_post_admin_test.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_time.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_endpoint.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_sleep.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_put_api_new_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_statistics.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_tasks_all.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_statistics_description.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_initiate.md"
},
"get": {
"description": "\n\n/// fetches one existing tasks on the server specified by *id*\n///\n\nExample: ///\n/// Fetching a single task by its id
shell> curl --dump - http://localhost:8529/_api/tasks/statistics-average-collector\n\nHTTP/1.1 200 OK\ncontent-type: application/json; charset=utf-8\n\n{ \n \"id\" : \"statistics-average-collector\", \n \"name\" : \"statistics-average-collector\", \n \"type\" : \"periodic\", \n \"period\" : 900, \n \"created\" : 1452621312.304436, \n \"command\" : \"require('@arangodb/statistics').historianAverage();\", \n \"database\" : \"_system\", \n \"error\" : false, \n \"code\" : 200 \n}\n
\nExample: ///\n/// trying to fetch a non-existing task
shell> curl --dump - http://localhost:8529/_api/tasks/non-existing-task\n\nHTTP/1.1 404 Not Found\ncontent-type: application/json; charset=utf-8\n\n{ \n \"error\" : true, \n \"code\" : 404, \n \"errorNum\" : 1852, \n \"errorMessage\" : \"task not found\" \n}\n
\n/// \n///////////////////////////////////////////////////////////////////////////////\n",
@@ -7187,7 +7427,7 @@
"Administration"
],
"x-examples": [],
- "x-filename": "Administration - ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_statistics.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_database_version.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_endpoint.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_time.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_post_admin_test.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_post_api_new_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_server_role.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_sleep.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_tasks_all.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_echo.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_long_echo.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_post_admin_execute.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_modules_flush.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_routing_reloads.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_statistics_description.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_delete_api_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_put_api_new_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_return.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_initiate.md"
+ "x-filename": "Administration - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_modules_flush.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_post_admin_execute.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_server_role.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_database_version.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_echo.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_delete_api_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_post_api_new_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_long_echo.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_routing_reloads.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_return.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_post_admin_test.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_time.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_endpoint.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_sleep.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_put_api_new_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_statistics.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_tasks_all.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_statistics_description.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_initiate.md"
},
"put": {
"description": "**A json post document with these Properties is required:**\n\n - **params**: /// The parameters to be passed into command\n ///\n - **offset**: /// Number of seconds initial delay \n ///\n - **command**: /// The JavaScript code to be executed\n ///\n - **name**: /// The name of the task\n ///\n - **period**: /// number of seconds between the executions\n ///\n\n\n\n\n/// registers a new task with the specified id\n///\n\nExample: ///
shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/tasks/sampleTask <<EOF\n{ \n \"id\" : \"SampleTask\", \n \"name\" : \"SampleTask\", \n \"command\" : \"(function(params) { require('internal').print(params); })(params)\", \n \"params\" : { \n \"foo\" : \"bar\", \n \"bar\" : \"foo\" \n }, \n \"period\" : 2 \n}\nEOF\n\nHTTP/1.1 200 OK\ncontent-type: application/json; charset=utf-8\n\n{ \n \"id\" : \"sampleTask\", \n \"name\" : \"SampleTask\", \n \"type\" : \"periodic\", \n \"period\" : 2, \n \"created\" : 1452621383.935555, \n \"command\" : \"(function(params) { require('internal').print(params); })(params)\", \n \"database\" : \"_system\", \n \"error\" : false, \n \"code\" : 200 \n}\n
\n/// \n///////////////////////////////////////////////////////////////////////////////\n",
@@ -7220,7 +7460,7 @@
"Administration"
],
"x-examples": [],
- "x-filename": "Administration - ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_statistics.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_database_version.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_endpoint.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_time.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_post_admin_test.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_post_api_new_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_server_role.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_sleep.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_tasks_all.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_echo.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_long_echo.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_post_admin_execute.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_modules_flush.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_routing_reloads.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_statistics_description.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_delete_api_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_put_api_new_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_return.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_initiate.md"
+ "x-filename": "Administration - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_modules_flush.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_post_admin_execute.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_server_role.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_database_version.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_echo.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_delete_api_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_post_api_new_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_long_echo.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_routing_reloads.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_return.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_post_admin_test.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_time.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_endpoint.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_sleep.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_put_api_new_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_statistics.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_tasks_all.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_statistics_description.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_initiate.md"
}
},
"/_api/transaction": {
@@ -7256,7 +7496,7 @@
"Transactions"
],
"x-examples": [],
- "x-filename": "Transactions - ./Documentation/DocuBlocks/Rest//Transactions/JSF_post_api_transaction.md"
+ "x-filename": "Transactions - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Transactions/JSF_post_api_transaction.md"
}
},
"/_api/traversal": {
@@ -7292,7 +7532,7 @@
"Graph Traversal"
],
"x-examples": [],
- "x-filename": "Graph Traversal - ./Documentation/DocuBlocks/Rest//Graph Traversal/JSF_HTTP_API_TRAVERSAL.md"
+ "x-filename": "Graph Traversal - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Graph Traversal/JSF_HTTP_API_TRAVERSAL.md"
}
},
"/_api/user": {
@@ -7312,7 +7552,7 @@
"User handling"
],
"x-examples": [],
- "x-filename": "User handling - ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_fetch.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_replace.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_delete.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_update.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_fetch_list.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_create.md"
+ "x-filename": "User handling - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_create.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_update.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_replace.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_delete.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_fetch.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_fetch_list.md"
}
},
"/_api/user/": {
@@ -7329,7 +7569,7 @@
"User handling"
],
"x-examples": [],
- "x-filename": "User handling - ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_fetch.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_replace.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_delete.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_update.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_fetch_list.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_create.md"
+ "x-filename": "User handling - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_create.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_update.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_replace.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_delete.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_fetch.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_fetch_list.md"
}
},
"/_api/user/{user}": {
@@ -7358,7 +7598,7 @@
"User handling"
],
"x-examples": [],
- "x-filename": "User handling - ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_fetch.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_replace.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_delete.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_update.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_fetch_list.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_create.md"
+ "x-filename": "User handling - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_create.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_update.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_replace.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_delete.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_fetch.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_fetch_list.md"
},
"get": {
"description": "\n\n///\n/// Fetches data about the specified user.\n///\n/// The call will return a JSON object with at least the following attributes on success:\n///\n/// - *user*: The name of the user as a string.\n/// - *active*: An optional flag that specifies whether the user is active.\n/// - *extra*: An optional JSON object with arbitrary extra data about the user.\n/// - *changePassword*: An optional flag that specifies whether the user must\n/// change the password or not.\n///\n",
@@ -7385,7 +7625,7 @@
"User handling"
],
"x-examples": [],
- "x-filename": "User handling - ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_fetch.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_replace.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_delete.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_update.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_fetch_list.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_create.md"
+ "x-filename": "User handling - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_create.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_update.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_replace.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_delete.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_fetch.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_fetch_list.md"
},
"patch": {
"description": "\n\n///\n/// Partially updates the data of an existing user. The name of an existing\n/// user must be specified in *user*.\n///\n/// The following data can be passed in a JSON representation in the body of the\n/// POST request:\n///\n/// - *passwd*: The user password as a string. Specifying a password is optional.\n/// If not specified, the previously existing value will not be modified.\n/// - *active*: An optional flag that specifies whether the user is active.\n/// If not specified, the previously existing value will not be modified.\n/// - *extra*: An optional JSON object with arbitrary extra data about the user.\n/// If not specified, the previously existing value will not be modified.\n/// - *changePassword*: An optional flag that specifies whether the user must change\n/// the password or not. If not specified, the previously existing value will not be modified.\n///\n/// If the user can be updated by the server, the server will respond with HTTP 200.\n///\n/// In case of success, the returned JSON object has the following properties:\n///\n/// - *error*: Boolean flag to indicate that an error occurred (false in this case)\n/// - *code*: The HTTP status code\n///\n/// In case of error, the body of the response will contain a JSON object with additional error details.\n/// The object has the following attributes:\n///\n/// - *error*: Boolean flag to indicate that an error occurred (true in this case)\n/// - *code*: The HTTP status code\n/// - *errorNum*: The server error number\n/// - *errorMessage*: A descriptive error message\n///\n",
@@ -7415,7 +7655,7 @@
"User handling"
],
"x-examples": [],
- "x-filename": "User handling - ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_fetch.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_replace.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_delete.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_update.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_fetch_list.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_create.md"
+ "x-filename": "User handling - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_create.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_update.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_replace.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_delete.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_fetch.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_fetch_list.md"
},
"put": {
"description": "\n\n///\n/// Replaces the data of an existing user. The name of an existing user must be specified in user.\n///\n/// The following data can to be passed in a JSON representation in the body of the POST request:\n///\n/// - *passwd*: The user password as a string. Specifying a password is mandatory,\n/// but the empty string is allowed for passwords\n/// - *active*: An optional flag that specifies whether the user is active.\n/// If not specified, this will default to true\n/// - *extra*: An optional JSON object with arbitrary extra data about the user\n/// - *changePassword*: An optional flag that specifies whether the user must change\n/// the password or not. If not specified, this will default to false\n///\n/// If the user can be replaced by the server, the server will respond with HTTP 200.\n///\n/// In case of success, the returned JSON object has the following properties:\n///\n/// - *error*: Boolean flag to indicate that an error occurred (false in this case)\n/// - *code*: The HTTP status code\n///\n/// In case of error, the body of the response will contain a JSON object with additional\n/// error details. The object has the following attributes:\n///\n/// - *error*: Boolean flag to indicate that an error occurred (true in this case)\n/// - *code*: The HTTP status code\n/// - *errorNum*: The server error number\n/// - *errorMessage*: A descriptive error message\n///\n",
@@ -7445,7 +7685,7 @@
"User handling"
],
"x-examples": [],
- "x-filename": "User handling - ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_fetch.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_replace.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_delete.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_update.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_fetch_list.md, ./Documentation/DocuBlocks/Rest//User handling/JSF_api_user_create.md"
+ "x-filename": "User handling - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_create.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_update.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_replace.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_delete.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_fetch.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/User handling/JSF_api_user_fetch_list.md"
}
},
"/_api/version": {
@@ -7477,7 +7717,7 @@
"Administration"
],
"x-examples": [],
- "x-filename": "Administration - ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_statistics.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_database_version.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_endpoint.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_time.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_post_admin_test.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_post_api_new_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_server_role.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_sleep.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_tasks_all.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_echo.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_long_echo.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_post_admin_execute.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_modules_flush.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_routing_reloads.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_admin_statistics_description.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_delete_api_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_put_api_new_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_tasks.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_return.md, ./Documentation/DocuBlocks/Rest//Administration/JSF_get_api_initiate.md"
+ "x-filename": "Administration - /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_modules_flush.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_post_admin_execute.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_server_role.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_database_version.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_echo.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_delete_api_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_post_api_new_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_long_echo.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_routing_reloads.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_return.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_post_admin_test.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_time.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_endpoint.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_sleep.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_put_api_new_tasks.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_statistics.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_tasks_all.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_admin_statistics_description.md, /home/neunhoef/tmp/ArangoDB-NewDoc/Documentation/DocuBlocks/Rest/Administration/JSF_get_api_initiate.md"
}
}
},
diff --git a/js/apps/system/_admin/aardvark/APP/foxxes.js b/js/apps/system/_admin/aardvark/APP/foxxes.js
index ddb12292d3..629ad835b5 100644
--- a/js/apps/system/_admin/aardvark/APP/foxxes.js
+++ b/js/apps/system/_admin/aardvark/APP/foxxes.js
@@ -291,7 +291,8 @@ foxxRouter.get('/download/zip', function (req, res) {
const service = FoxxManager.lookupService(mount);
const dir = fs.join(fs.makeAbsolute(service.root), service.path);
const zipPath = fmUtils.zipDirectory(dir);
- res.download(zipPath, `${service.name}@${service.version}.zip.`);
+ const name = mount.replace(/^\/|\/$/g, '').replace(/\//g, '_');
+ res.download(zipPath, `${name}.zip`);
})
.summary('Download a service as zip archive')
.description(dd`
diff --git a/js/apps/system/_admin/aardvark/APP/frontend/html/body.html.part b/js/apps/system/_admin/aardvark/APP/frontend/html/body.html.part
index 04e090fc08..c1efdcc1c3 100644
--- a/js/apps/system/_admin/aardvark/APP/frontend/html/body.html.part
+++ b/js/apps/system/_admin/aardvark/APP/frontend/html/body.html.part
@@ -24,11 +24,18 @@
diff --git a/js/apps/system/_admin/aardvark/APP/frontend/js/views/dashboardView.js b/js/apps/system/_admin/aardvark/APP/frontend/js/views/dashboardView.js
index 6ee037f679..58df1e5331 100644
--- a/js/apps/system/_admin/aardvark/APP/frontend/js/views/dashboardView.js
+++ b/js/apps/system/_admin/aardvark/APP/frontend/js/views/dashboardView.js
@@ -336,18 +336,29 @@
}
});
- //sort for library
- opts.file.sort(function(a,b){
- return new Date(b[0]) - new Date(a[0]);
- });
+ if (opts.file === undefined) {
+ $('#loadingScreen span').text('Statistics not ready yet. Waiting.');
+ $('#loadingScreen').show();
+ $('#content').hide();
+ }
+ else {
+ $('#content').show();
+ $('#loadingScreen').hide();
- g.updateOptions(opts);
-
- //clean up history
- if (this.history[this.server].hasOwnProperty(figure)) {
- this.cleanupHistory(figure);
- }
+ //sort for library
+ opts.file.sort(function(a,b){
+ return new Date(b[0]) - new Date(a[0]);
+ });
+ g.updateOptions(opts);
+
+ //clean up history
+ if (this.history[this.server].hasOwnProperty(figure)) {
+ this.cleanupHistory(figure);
+ }
+ }
+ $(window).trigger('resize');
+ this.resize();
},
mergeDygraphHistory: function (newData, i) {
diff --git a/js/apps/system/_admin/aardvark/APP/frontend/scss/_body.scss b/js/apps/system/_admin/aardvark/APP/frontend/scss/_body.scss
index d1911c427b..1566395166 100644
--- a/js/apps/system/_admin/aardvark/APP/frontend/scss/_body.scss
+++ b/js/apps/system/_admin/aardvark/APP/frontend/scss/_body.scss
@@ -26,6 +26,26 @@ body {
.centralRow {
position: relative;
}
+
+ .loadingScreen {
+ background-color: $c-white;
+ bottom: 0;
+ left: 0;
+ padding-top: 100px;
+ position: absolute;
+ right: 0;
+ top: 102px;
+ z-index: 100;
+
+ span {
+ display: inline-block;
+ margin-top: 10px;
+ text-align: center;
+ width: 100%;
+ }
+
+ i {
+ width: 100%;
+ }
+ }
}
-
-
diff --git a/js/common/modules/@arangodb/foxx/manager-utils.js b/js/common/modules/@arangodb/foxx/manager-utils.js
index a945fb99af..3586c5aba7 100644
--- a/js/common/modules/@arangodb/foxx/manager-utils.js
+++ b/js/common/modules/@arangodb/foxx/manager-utils.js
@@ -1,4 +1,3 @@
-/*jshint globalstrict: true */
'use strict';
////////////////////////////////////////////////////////////////////////////////
@@ -38,7 +37,6 @@ var db = arangodb.db;
var internal = require('internal');
var throwFileNotFound = arangodb.throwFileNotFound;
-var throwDownloadError = arangodb.throwDownloadError;
var errors = arangodb.errors;
var ArangoError = arangodb.ArangoError;
var mountRegEx = /^(\/[a-zA-Z0-9_\-%]+)+$/;
@@ -91,189 +89,6 @@ function buildGithubUrl (repository, version) {
return urlPrefix + repository + '/archive/' + version + '.zip';
}
-////////////////////////////////////////////////////////////////////////////////
-/// @brief extracts the name and version from a manifest file
-////////////////////////////////////////////////////////////////////////////////
-
-function extractNameAndVersionManifest (source, filename) {
- var manifest = JSON.parse(fs.read(filename));
-
- source.name = manifest.name;
- source.version = manifest.version;
-}
-
-
-////////////////////////////////////////////////////////////////////////////////
-/// @brief processes files in a directory
-////////////////////////////////////////////////////////////////////////////////
-
-function processDirectory (source) {
- var location = source.location;
-
- if (! fs.exists(location) || ! fs.isDirectory(location)) {
- throwFileNotFound("'" + String(location) + "' is not a directory");
- }
-
- // .............................................................................
- // extract name and version from manifest
- // .............................................................................
-
- extractNameAndVersionManifest(source, fs.join(location, "manifest.json"));
-
- // .............................................................................
- // extract name and version from manifest
- // .............................................................................
-
- var tree = fs.listTree(location);
- var files = [];
- var i;
- var filename;
-
- for (i = 0; i < tree.length; ++i) {
- filename = fs.join(location, tree[i]);
-
- if (fs.isFile(filename)) {
- files.push(tree[i]);
- }
- }
-
- if (files.length === 0) {
- throwFileNotFound("Directory '" + String(location) + "' is empty");
- }
-
- var tempFile = fs.getTempFile("downloads", false);
- source.filename = tempFile;
- source.removeFile = true;
-
- fs.zipFile(tempFile, location, files);
- return tempFile;
-}
-
-
-////////////////////////////////////////////////////////////////////////////////
-/// @brief extracts the name and version from a zip
-////////////////////////////////////////////////////////////////////////////////
-
-function repackZipFile (source) {
- var i;
-
- var filename = source.filename;
- var path = fs.getTempFile("zip", false);
-
- fs.makeDirectory(path);
- fs.unzipFile(filename, path, false, true);
-
- // .............................................................................
- // locate the manifest file
- // .............................................................................
-
- var tree = fs.listTree(path).sort(function(a,b) {
- return a.length - b.length;
- });
- var found;
- var mf = "manifest.json";
- var re = /[\/\\\\]manifest\.json$/; // Windows!
- var tf;
-
- for (i = 0; i < tree.length && found === undefined; ++i) {
- tf = tree[i];
-
- if (re.test(tf) || tf === mf) {
- found = tf;
- }
- }
-
- if (found === undefined) {
- throwFileNotFound("Cannot find manifest file in zip file '" + filename + "'");
- }
-
- var mp;
-
- if (found === mf) {
- mp = ".";
- }
- else {
- mp = found.substr(0, found.length - mf.length - 1);
- }
-
- // .............................................................................
- // throw away source file if necessary
- // .............................................................................
-
- if (source.removeFile && source.filename !== '') {
- try {
- fs.remove(source.filename);
- }
- catch (err1) {
- arangodb.printf("Cannot remove temporary file '%s'\n", source.filename);
- }
- }
-
- delete source.filename;
- delete source.removeFile;
-
- // .............................................................................
- // repack the zip file
- // .............................................................................
-
- var newSource = { location: fs.join(path, mp) };
-
- processDirectory(newSource);
-
- source.name = newSource.name;
- source.version = newSource.version;
- source.filename = newSource.filename;
- source.removeFile = newSource.removeFile;
-
- // .............................................................................
- // cleanup temporary paths
- // .............................................................................
-
- try {
- fs.removeDirectoryRecursive(path);
- }
- catch (err2) {
- arangodb.printf("Cannot remove temporary directory '%s'\n", path);
- }
-}
-////////////////////////////////////////////////////////////////////////////////
-/// @brief processes files from a github repository
-////////////////////////////////////////////////////////////////////////////////
-
-function processGithubRepository (source) {
- var url = buildGithubUrl(source.location, source.version);
- var tempFile = fs.getTempFile("downloads", false);
-
- try {
- var result = internal.download(url, "", {
- method: "get",
- followRedirects: true,
- timeout: 30
- }, tempFile);
-
- if (result.code >= 200 && result.code <= 299) {
- source.filename = tempFile;
- source.removeFile = true;
- }
- else {
- let msg = "Could not download from repository '" + url + "'";
- if (result.hasOwnProperty('message')) {
- msg += " message: " + result.message;
- }
- throwDownloadError(msg);
- }
- }
- catch (err) {
- let msg = "Could not download from repository '" + url + "': " + String(err);
- if (err.hasOwnProperty('message')) {
- msg += " message: " + err.message;
- }
- throwDownloadError(msg);
- }
-
- repackZipFile(source);
-}
-
////////////////////////////////////////////////////////////////////////////////
/// @brief returns all running Foxx applications
////////////////////////////////////////////////////////////////////////////////
@@ -513,9 +328,6 @@ exports.listJson = listJson;
exports.listDevelopment = listDevelopment;
exports.listDevelopmentJson = listDevelopmentJson;
exports.buildGithubUrl = buildGithubUrl;
-exports.repackZipFile = repackZipFile;
-exports.processDirectory = processDirectory;
-exports.processGithubRepository = processGithubRepository;
exports.validateServiceName = validateServiceName;
exports.validateMount = validateMount;
exports.parameterTypes = parameterTypes;
diff --git a/js/server/modules/@arangodb/foxx/context.js b/js/server/modules/@arangodb/foxx/context.js
index 8260466278..ba97cfe1b7 100644
--- a/js/server/modules/@arangodb/foxx/context.js
+++ b/js/server/modules/@arangodb/foxx/context.js
@@ -42,7 +42,7 @@ module.exports = class FoxxContext {
}
use(path, router, name) {
- this.service.router.use(path, router, name);
+ return this.service.router.use(path, router, name);
}
registerType(type, def) {
@@ -85,17 +85,13 @@ module.exports = class FoxxContext {
}
fileName(filename) {
- return fs.safeJoin(this.basePath, filename);
+ return path.join(this.basePath, filename);
}
file(filename, encoding) {
return fs.readFileSync(this.fileName(filename), encoding);
}
- path(name) {
- return path.join(this.basePath, name);
- }
-
collectionName(name) {
const fqn = (
this.collectionPrefix + name
@@ -116,7 +112,7 @@ module.exports = class FoxxContext {
}
get baseUrl() {
- return `/_db/${encodeURIComponent(internal.db._name())}/${this.service.mount.slice(1)}`;
+ return `/_db/${encodeURIComponent(internal.db._name())}${this.service.mount}`;
}
get collectionPrefix() {
@@ -127,14 +123,6 @@ module.exports = class FoxxContext {
return this.service.mount;
}
- get name() {
- return this.service.name;
- }
-
- get version() {
- return this.service.version;
- }
-
get manifest() {
return this.service.manifest;
}
@@ -147,10 +135,6 @@ module.exports = class FoxxContext {
return !this.isDevelopment;
}
- get options() {
- return this.service.options;
- }
-
get configuration() {
return this.service.configuration;
}
diff --git a/js/server/modules/@arangodb/foxx/legacy/swagger.js b/js/server/modules/@arangodb/foxx/legacy/swagger.js
index a2b66daee7..9645a2e7e0 100644
--- a/js/server/modules/@arangodb/foxx/legacy/swagger.js
+++ b/js/server/modules/@arangodb/foxx/legacy/swagger.js
@@ -24,6 +24,7 @@
var _ = require('lodash');
var fs = require('fs');
+var joinPath = require('path').join;
var internal = require('internal');
var ArangoError = require('@arangodb').ArangoError;
var errors = require('@arangodb').errors;
@@ -96,9 +97,9 @@ function swaggerPath(path, basePath) {
return path;
}
if (!basePath) {
- basePath = fs.join(internal.startupPath, 'server', 'assets', 'swagger');
+ basePath = joinPath(internal.startupPath, 'server', 'assets', 'swagger');
}
- return fs.safeJoin(basePath, path);
+ return joinPath(basePath, path);
}
function resolveFoxx(req, res, appPath) {
diff --git a/js/server/modules/@arangodb/foxx/manager.js b/js/server/modules/@arangodb/foxx/manager.js
index eca025d828..6280f47042 100644
--- a/js/server/modules/@arangodb/foxx/manager.js
+++ b/js/server/modules/@arangodb/foxx/manager.js
@@ -1,4 +1,3 @@
-/*jshint esnext: true */
/*global ArangoServerState, ArangoClusterInfo, ArangoClusterComm */
'use strict';
@@ -32,9 +31,11 @@
const _ = require('lodash');
const fs = require('fs');
+const joinPath = require('path').join;
const joi = require('joi');
const util = require('util');
const semver = require('semver');
+const dd = require('dedent');
const il = require('@arangodb/util').inline;
const utils = require('@arangodb/foxx/manager-utils');
const store = require('@arangodb/foxx/store');
@@ -69,8 +70,8 @@ const legacyManifestFields = [
];
const manifestSchema = {
- name: joi.string().regex(/^[-_a-z][-_a-z0-9]*$/i).required(),
- version: joi.string().required(),
+ name: joi.string().regex(/^[-_a-z][-_a-z0-9]*$/i).optional(),
+ version: joi.string().optional(),
engines: (
joi.object().optional()
.pattern(RE_EMPTY, joi.forbidden())
@@ -93,7 +94,7 @@ const manifestSchema = {
),
lib: joi.string().default('.'),
- main: joi.string().optional(),
+ main: joi.string().default('index.js'),
configuration: (
joi.object().optional()
@@ -126,6 +127,17 @@ const manifestSchema = {
))
),
+ provides: (
+ joi.alternatives().try(
+ joi.string().optional(),
+ joi.array().optional()
+ .items(joi.string().required()),
+ joi.object().optional()
+ .pattern(RE_EMPTY, joi.forbidden())
+ .pattern(RE_NOT_EMPTY, joi.string().required())
+ )
+ ),
+
files: (
joi.object().optional()
.pattern(RE_EMPTY, joi.forbidden())
@@ -215,7 +227,10 @@ function lookupService(mount) {
}
throw new ArangoError({
errorNum: errors.ERROR_APP_NOT_FOUND.code,
- errorMessage: 'Service not found at: ' + mount
+ errorMessage: dd`
+ ${errors.ERROR_APP_NOT_FOUND.message}
+ Service not found at "${mount}".
+ `
});
}
return serviceCache[dbname][mount];
@@ -286,88 +301,138 @@ function checkMountedSystemService(dbname) {
/// this implements issue #590: Manifest Lint
////////////////////////////////////////////////////////////////////////////////
-function checkManifest(filename, manifest) {
+function checkManifest(filename, inputManifest, mount) {
const serverVersion = plainServerVersion();
- const validationErrors = [];
+ const errors = [];
+ const warnings = [];
+ const notices = [];
+ const manifest = {};
let legacy = false;
Object.keys(manifestSchema).forEach(function (key) {
- let schema = manifestSchema[key];
- let value = manifest[key];
- let result = joi.validate(value, schema);
- if (result.value !== undefined) {
+ const schema = manifestSchema[key];
+ const value = inputManifest[key];
+ const result = joi.validate(value, schema);
+ if (result.error) {
+ const error = result.error.message.replace(/^"value"/, `Field "${key}"`);
+ errors.push(`${error} (was "${util.format(value)}").`);
+ } else {
manifest[key] = result.value;
}
- if (result.error) {
- let error = result.error.message.replace(/^"value"/, `"${key}"`);
- let message = `Manifest "${filename}": attribute ${error} (was "${util.format(value)}").`;
- validationErrors.push(message);
- console.error(message);
- }
});
- if (!manifest.engines && manifest.engine) {
- console.warn(il`
- Found unexpected "engine" field in manifest "${filename}" for service "${manifest.name}".
- Did you mean "engines"?
- `);
- }
-
if (manifest.engines && manifest.engines.arangodb) {
if (semver.gtr('3.0.0', manifest.engines.arangodb)) {
legacy = true;
- console.warn(
- `Manifest "${filename}" for service "${manifest.name}":`
- + ` Service expects version ${manifest.engines.arangodb}`
- + ` and will run in legacy compatibility mode.`
- );
+ notices.push(il`
+ Service expects version ${manifest.engines.arangodb}
+ and will run in legacy compatibility mode.
+ `);
} else if (!semver.satisfies(serverVersion, manifest.engines.arangodb)) {
- console.warn(
- `Manifest "${filename}" for service "${manifest.name}":`
- + ` ArangoDB version ${serverVersion} probably not compatible`
- + ` with expected version ${manifest.engines.arangodb}.`
- );
+ warnings.push(il`
+ ArangoDB version ${serverVersion} probably not compatible
+ with expected version ${manifest.engines.arangodb}.
+ `);
}
}
- Object.keys(manifest).forEach(function (key) {
- if (!manifestSchema[key] && (!legacy || legacyManifestFields.indexOf(key) === -1)) {
- console.warn(`Manifest "${filename}" for service "${manifest.name}": unknown attribute "${key}"`);
+ for (const key of Object.keys(inputManifest)) {
+ if (manifestSchema[key]) {
+ continue;
}
- });
+ manifest[key] = inputManifest[key];
+ if (key === 'engine' && !inputManifest.engines) {
+ warnings.push('Unknown field "engine". Did you mean "engines"?');
+ } else if (!legacy || legacyManifestFields.indexOf(key) === -1) {
+ warnings.push(`Unknown field "${key}".`);
+ }
+ }
- if (validationErrors.length) {
+ if (manifest.version && !semver.valid(manifest.version)) {
+ warnings.push(`Not a valid version: "${manifest.verison}"`);
+ }
+
+ if (manifest.provides) {
+ if (typeof manifest.provides === 'string') {
+ manifest.provides = [manifest.provides];
+ }
+ if (Array.isArray(manifest.provides)) {
+ const provides = manifest.provides;
+ manifest.provides = {};
+ for (const provided of provides) {
+ const tokens = provided.split(':');
+ manifest.provides[tokens[0]] = tokens[1] || '*';
+ }
+ }
+ for (const name of Object.keys(manifest.provides)) {
+ const version = manifest.provides[name];
+ if (!semver.valid(version)) {
+ errors.push(`Provided "${name}" invalid version: "${version}".`);
+ }
+ }
+ }
+
+ if (manifest.dependencies) {
+ for (const key of Object.keys(manifest.dependencies)) {
+ if (typeof manifest.dependencies[key] === 'string') {
+ const tokens = manifest.dependencies[key].split(':');
+ manifest.dependencies[key] = {
+ name: tokens[0] || '*',
+ version: tokens[1] || '*',
+ required: true
+ };
+ }
+ const version = manifest.dependencies[key].version;
+ if (!semver.validRange(version)) {
+ errors.push(`Dependency "${key}" invalid version: "${version}".`);
+ }
+ }
+ }
+
+ if (notices.length) {
+ console.infoLines(dd`
+ Manifest for service at "${mount}":
+ ${notices.join('\n')}
+ `);
+ }
+
+ if (warnings.length) {
+ console.warnLines(dd`
+ Manifest for service at "${mount}":
+ ${warnings.join('\n')}
+ `);
+ }
+
+ if (errors.length) {
+ console.errorLines(dd`
+ Manifest for service at "${mount}":
+ ${errors.join('\n')}
+ `);
throw new ArangoError({
errorNum: errors.ERROR_INVALID_APPLICATION_MANIFEST.code,
- errorMessage: validationErrors.join('\n')
+ errorMessage: dd`
+ ${errors.ERROR_INVALID_APPLICATION_MANIFEST.message}
+ Manifest for service at "${mount}":
+ ${errors.join('\n')}
+ `
});
- } else {
- if (manifest.dependencies) {
- Object.keys(manifest.dependencies).forEach(function (key) {
- const dependency = manifest.dependencies[key];
- if (typeof dependency === 'string') {
- const tokens = dependency.split(':');
- manifest.dependencies[key] = {
- name: tokens[0] || '*',
- version: tokens[1] || '*',
- required: true
- };
- }
- });
- }
+ }
- if (legacy && manifest.defaultDocument === undefined) {
+ if (legacy) {
+ if (manifest.defaultDocument === undefined) {
manifest.defaultDocument = 'index.html';
}
if (typeof manifest.controllers === 'string') {
manifest.controllers = {'/': manifest.controllers};
}
-
- if (typeof manifest.tests === 'string') {
- manifest.tests = [manifest.tests];
- }
}
+
+ if (typeof manifest.tests === 'string') {
+ manifest.tests = [manifest.tests];
+ }
+
+ return manifest;
}
@@ -377,35 +442,38 @@ function checkManifest(filename, manifest) {
/// All errors are handled including file not found. Returns undefined if manifest is invalid
////////////////////////////////////////////////////////////////////////////////
-function validateManifestFile(filename) {
- var mf, msg;
+function validateManifestFile(filename, mount) {
+ let mf;
if (!fs.exists(filename)) {
- msg = `Cannot find manifest file "${filename}"`;
- throwFileNotFound(msg);
+ throwFileNotFound(`Cannot find manifest file "${filename}"`);
}
try {
mf = JSON.parse(fs.read(filename));
} catch (e) {
- const error = new ArangoError({
- errorNum: errors.ERROR_MALFORMED_MANIFEST_FILE.code,
- errorMessage: errors.ERROR_MALFORMED_MANIFEST_FILE.message
- + '\nFile: ' + filename
- + '\nCause: ' + e.stack
- });
- error.cause = e;
- throw error;
+ throw Object.assign(
+ new ArangoError({
+ errorNum: errors.ERROR_MALFORMED_MANIFEST_FILE.code,
+ errorMessage: dd`
+ ${errors.ERROR_MALFORMED_MANIFEST_FILE.message}
+ File: ${filename}
+ Cause: ${e.stack}
+ `
+ }), {cause: e}
+ );
}
try {
- checkManifest(filename, mf);
+ mf = checkManifest(filename, mf, mount);
} catch (e) {
- const error = new ArangoError({
- errorNum: errors.ERROR_INVALID_APPLICATION_MANIFEST.code,
- errorMessage: errors.ERROR_INVALID_APPLICATION_MANIFEST.message
- + '\nFile: ' + filename
- + '\nCause: ' + e.stack
- });
- error.cause = e;
- throw error;
+ throw Object.assign(
+ new ArangoError({
+ errorNum: errors.ERROR_INVALID_APPLICATION_MANIFEST.code,
+ errorMessage: dd`
+ ${errors.ERROR_INVALID_APPLICATION_MANIFEST.message}
+ File: ${filename}
+ Cause: ${e.stack}
+ `
+ }), {cause: e}
+ );
}
return mf;
}
@@ -436,7 +504,7 @@ function computeRootServicePath(mount) {
function transformMountToPath(mount) {
var list = mount.split('/');
list.push('APP');
- return fs.join.apply(fs, list);
+ return joinPath(...list);
}
////////////////////////////////////////////////////////////////////////////////
@@ -456,7 +524,7 @@ function transformPathToMount(path) {
function computeServicePath(mount) {
var root = computeRootServicePath(mount);
var mountPath = transformMountToPath(mount);
- return fs.join(root, mountPath);
+ return joinPath(root, mountPath);
}
////////////////////////////////////////////////////////////////////////////////
@@ -479,15 +547,15 @@ function executeScript(scriptName, service, argv) {
/// @brief returns a valid service config for validation purposes
////////////////////////////////////////////////////////////////////////////////
-function fakeServiceConfig(path) {
- var file = fs.join(path, 'manifest.json');
+function fakeServiceConfig(path, mount) {
+ var file = joinPath(path, 'manifest.json');
return {
id: '__internal',
root: '',
path: path,
options: {},
mount: '/internal',
- manifest: validateManifestFile(file),
+ manifest: validateManifestFile(file, mount),
isSystem: false,
isDevelopment: false
};
@@ -501,13 +569,13 @@ function serviceConfig(mount, options, activateDevelopment) {
var root = computeRootServicePath(mount);
var path = transformMountToPath(mount);
- var file = fs.join(root, path, 'manifest.json');
+ var file = joinPath(root, path, 'manifest.json');
return {
id: mount,
path: path,
options: options || {},
mount: mount,
- manifest: validateManifestFile(file),
+ manifest: validateManifestFile(file, mount),
isSystem: isSystemMount(mount),
isDevelopment: activateDevelopment || false
};
@@ -535,7 +603,7 @@ function uploadToPeerCoordinators(serviceInfo, coordinators) {
let coordOptions = {
coordTransactionID: ArangoClusterInfo.uniqid()
};
- let req = fs.readBuffer(fs.join(fs.getTempPath(), serviceInfo));
+ let req = fs.readBuffer(joinPath(fs.getTempPath(), serviceInfo));
let httpOptions = {};
let mapping = {};
for (let i = 0; i < coordinators.length; ++i) {
@@ -559,10 +627,6 @@ function uploadToPeerCoordinators(serviceInfo, coordinators) {
function installServiceFromGenerator(targetPath, options) {
var invalidOptions = [];
// Set default values:
- options.name = options.name || 'MyService';
- options.author = options.author || 'Author';
- options.description = options.description || '';
- options.license = options.license || 'Apache 2';
options.documentCollections = options.documentCollections || [];
options.edgeCollections = options.edgeCollections || [];
if (typeof options.name !== 'string') {
@@ -586,8 +650,10 @@ function installServiceFromGenerator(targetPath, options) {
if (invalidOptions.length > 0) {
throw new ArangoError({
errorNum: errors.ERROR_INVALID_FOXX_OPTIONS.code,
- errorMessage: errors.ERROR_INVALID_FOXX_OPTIONS.message
- + '\nOptions: ' + JSON.stringify(invalidOptions, undefined, 2)
+ errorMessage: dd`
+ ${errors.ERROR_INVALID_FOXX_OPTIONS.message}
+ Options: ${JSON.stringify(invalidOptions, undefined, 2)}
+ `
});
}
var cfg = generator.generate(options);
@@ -651,7 +717,7 @@ function extractServiceToPath(archive, targetPath, noDelete) {
mp = found.substr(0, found.length - mf.length - 1);
}
- fs.move(fs.join(tempFile, mp), targetPath);
+ fs.move(joinPath(tempFile, mp), targetPath);
// .............................................................................
// throw away temporary service folder
@@ -779,10 +845,10 @@ function readme(mount) {
let service = lookupService(mount);
let path, readmeText;
- path = fs.join(service.root, service.path, 'README.md');
+ path = joinPath(service.root, service.path, 'README.md');
readmeText = fs.exists(path) && fs.read(path);
if (!readmeText) {
- path = fs.join(service.root, service.path, 'README');
+ path = joinPath(service.root, service.path, 'README');
readmeText = fs.exists(path) && fs.read(path);
}
return readmeText || null;
@@ -913,7 +979,7 @@ function _buildServiceInPath(serviceInfo, path, options) {
} else if (utils.pathRegex.test(serviceInfo)) {
installServiceFromLocal(serviceInfo, path);
} else if (/^uploads[\/\\]tmp-/.test(serviceInfo)) {
- serviceInfo = fs.join(fs.getTempPath(), serviceInfo);
+ serviceInfo = joinPath(fs.getTempPath(), serviceInfo);
installServiceFromLocal(serviceInfo, path);
} else {
try {
@@ -938,11 +1004,11 @@ function _buildServiceInPath(serviceInfo, path, options) {
/// Does not check parameters and throws errors.
////////////////////////////////////////////////////////////////////////////////
-function _validateService(serviceInfo) {
+function _validateService(serviceInfo, mount) {
var tempPath = fs.getTempFile('apps', false);
try {
_buildServiceInPath(serviceInfo, tempPath, {});
- var tmp = new FoxxService(fakeServiceConfig(tempPath));
+ var tmp = new FoxxService(fakeServiceConfig(tempPath, mount));
if (!tmp.needsConfiguration()) {
routeAndExportService(tmp, true);
}
@@ -1188,7 +1254,7 @@ function replace(serviceInfo, mount, options) {
[ 'Mount path', 'string' ] ],
[ serviceInfo, mount ] );
utils.validateMount(mount);
- _validateService(serviceInfo);
+ _validateService(serviceInfo, mount);
options = options || {};
let hasToBeDistributed = /^uploads[\/\\]tmp-/.test(serviceInfo);
if (ArangoServerState.isCoordinator() && !options.__clusterDistribution) {
@@ -1255,7 +1321,7 @@ function upgrade(serviceInfo, mount, options) {
[ 'Mount path', 'string' ] ],
[ serviceInfo, mount ] );
utils.validateMount(mount);
- _validateService(serviceInfo);
+ _validateService(serviceInfo, mount);
options = options || {};
let hasToBeDistributed = /^uploads[\/\\]tmp-/.test(serviceInfo);
if (ArangoServerState.isCoordinator() && !options.__clusterDistribution) {
diff --git a/js/server/modules/@arangodb/foxx/service.js b/js/server/modules/@arangodb/foxx/service.js
index e0af15f78e..62056132b2 100644
--- a/js/server/modules/@arangodb/foxx/service.js
+++ b/js/server/modules/@arangodb/foxx/service.js
@@ -45,6 +45,17 @@ const APP_PATH = internal.appPath ? path.resolve(internal.appPath) : undefined;
const STARTUP_PATH = internal.startupPath ? path.resolve(internal.startupPath) : undefined;
const DEV_APP_PATH = internal.devAppPath ? path.resolve(internal.devAppPath) : undefined;
+const LEGACY_ALIASES = [
+ ['@arangodb/foxx/authentication', '@arangodb/foxx/legacy/authentication'],
+ ['@arangodb/foxx/controller', '@arangodb/foxx/legacy/controller'],
+ ['@arangodb/foxx/model', '@arangodb/foxx/legacy/model'],
+ ['@arangodb/foxx/query', '@arangodb/foxx/legacy/query'],
+ ['@arangodb/foxx/repository', '@arangodb/foxx/legacy/repository'],
+ ['@arangodb/foxx/schema', '@arangodb/foxx/legacy/schema'],
+ ['@arangodb/foxx/sessions', '@arangodb/foxx/legacy/sessions'],
+ ['@arangodb/foxx/template_middleware', '@arangodb/foxx/legacy/template_middleware'],
+ ['@arangodb/foxx', '@arangodb/foxx/legacy']
+];
module.exports = class FoxxService {
constructor(data) {
@@ -97,8 +108,8 @@ module.exports = class FoxxService {
this.legacy = range ? semver.gtr('3.0.0', range) : false;
if (this.legacy) {
console.debugLines(dd`
- Running "${this.mount}" in 2.x compatibility mode.
- Requested version ${range} is lower than 3.0.0.
+ Service "${this.mount}" is running in legacy compatibility mode.
+ Requested version "${range}" is lower than "3.0.0".
`);
}
@@ -261,7 +272,7 @@ module.exports = class FoxxService {
}
_PRINT(context) {
- context.output += `[FoxxService "${this.name}" (${this.version}) on ${this.mount}]`;
+ context.output += `[FoxxService at "${this.mount}"]`;
}
toJSON() {
@@ -380,17 +391,7 @@ module.exports = class FoxxService {
this.main.filename = path.resolve(moduleRoot, '.foxx');
this.main[$_MODULE_ROOT] = moduleRoot;
this.main[$_MODULE_CONTEXT].console = foxxConsole;
- this.main.require.aliases = new Map(this.legacy ? [
- ['@arangodb/foxx/authentication', '@arangodb/foxx/legacy/authentication'],
- ['@arangodb/foxx/controller', '@arangodb/foxx/legacy/controller'],
- ['@arangodb/foxx/model', '@arangodb/foxx/legacy/model'],
- ['@arangodb/foxx/query', '@arangodb/foxx/legacy/query'],
- ['@arangodb/foxx/repository', '@arangodb/foxx/legacy/repository'],
- ['@arangodb/foxx/schema', '@arangodb/foxx/legacy/schema'],
- ['@arangodb/foxx/sessions', '@arangodb/foxx/legacy/sessions'],
- ['@arangodb/foxx/template_middleware', '@arangodb/foxx/legacy/template_middleware'],
- ['@arangodb/foxx', '@arangodb/foxx/legacy']
- ] : []);
+ this.main.require.aliases = new Map(this.legacy ? LEGACY_ALIASES : []);
this.main.require.cache = this.requireCache;
this.main.context = new FoxxContext(this);
this.router = new Router();
@@ -401,7 +402,15 @@ module.exports = class FoxxService {
};
if (this.legacy) {
+ this.main.context.path = this.main.context.fileName;
+ this.main.context.fileName = (filename) => fs.safeJoin(this.basePath, filename);
this.main.context.foxxFilename = this.main.context.fileName;
+ this.main.context.version = this.version = this.manifest.version;
+ this.main.context.name = this.name = this.manifest.name;
+ this.main.context.options = this.options;
+ this.main.context.use = undefined;
+ this.main.context.apiDocumentation = undefined;
+ this.main.context.registerType = undefined;
}
}
@@ -409,14 +418,6 @@ module.exports = class FoxxService {
return this.main.exports;
}
- get name() {
- return this.manifest.name;
- }
-
- get version() {
- return this.manifest.version;
- }
-
get isSystem() {
return this.mount.charAt(1) === '_';
}
@@ -464,19 +465,19 @@ module.exports = class FoxxService {
function createConfiguration(definitions) {
const config = {};
- Object.keys(definitions).forEach(function (name) {
+ for (const name of Object.keys(definitions)) {
const def = definitions[name];
if (def.default !== undefined) {
config[name] = def.default;
}
- });
+ }
return config;
}
function createDependencies(definitions, options) {
const deps = {};
- Object.keys(definitions).forEach(function (name) {
+ for (const name of Object.keys(definitions)) {
Object.defineProperty(deps, name, {
configurable: true,
enumerable: true,
@@ -489,6 +490,6 @@ function createDependencies(definitions, options) {
return FoxxManager.requireService('/' + mount.replace(/(^\/+|\/+$)/, ''));
}
});
- });
+ }
return deps;
}
diff --git a/js/server/modules/@arangodb/foxx/swagger.js b/js/server/modules/@arangodb/foxx/swagger.js
index 41865ef4f1..d1569bc353 100644
--- a/js/server/modules/@arangodb/foxx/swagger.js
+++ b/js/server/modules/@arangodb/foxx/swagger.js
@@ -24,6 +24,7 @@
const NotFound = require('http-errors').NotFound;
const fs = require('fs');
+const joinPath = require('path').join;
const internal = require('internal');
const errors = require('@arangodb').errors;
const FoxxManager = require('@arangodb/foxx/manager');
@@ -98,7 +99,7 @@ module.exports = function createSwaggerRouteHandler(foxxMount, opts) {
} else if (path === 'index.html') {
path = indexFile;
}
- const filePath = path.charAt(0) === '/' ? path : fs.safeJoin(swaggerRoot, path);
+ const filePath = path.charAt(0) === '/' ? path : joinPath(swaggerRoot, path);
if (!fs.isFile(filePath)) {
throw new NotFound(`unknown path "${req._raw.url}"`);
}
diff --git a/scripts/run b/scripts/run
index edac48ca7e..03303ed092 100755
--- a/scripts/run
+++ b/scripts/run
@@ -42,7 +42,7 @@ done
echo Database has its data in ${DBDIR}
echo Logfile is in ${LOGFILE}
-$VG bin/arangod \
+$VG build/bin/arangod \
--configuration none \
--cluster.arangod-path bin${PS}arangod \
--cluster.coordinator-config etc${PS}relative${PS}arangod-coordinator.conf \
diff --git a/utils/generateSwagger.py b/utils/generateSwagger.py
index 6ff227c634..3d909c18b7 100755
--- a/utils/generateSwagger.py
+++ b/utils/generateSwagger.py
@@ -149,12 +149,6 @@ restBodyParam = None
restReplyBodyParam = None
restSubBodyParam = None
-################################################################################
-### @brief C_FILE
-################################################################################
-
-C_FILE = False
-
################################################################################
### @brief DEBUG
################################################################################
@@ -283,10 +277,7 @@ def LIT(txt, wordboundary = ['','']):
################################################################################
def Typography(txt):
- if C_FILE:
- txt = txt[4:-1]
- else:
- txt = txt[0:-1]
+ txt = txt[0:-1]
# txt = BackTicks(txt)
# txt = AsteriskBold(txt)
@@ -376,7 +367,6 @@ class Regexen:
self.END_EXAMPLE_ARANGOSH_RUN = re.compile('.*@END_EXAMPLE_ARANGOSH_RUN')
self.EXAMPLES = re.compile('.*@EXAMPLES')
self.EXAMPLE_ARANGOSH_RUN = re.compile('.*@EXAMPLE_ARANGOSH_RUN{')
- self.FILE = re.compile('.*@file')
self.RESTBODYPARAM = re.compile('.*@RESTBODYPARAM')
self.RESTSTRUCT = re.compile('.*@RESTSTRUCT')
self.RESTALLBODYPARAM = re.compile('.*@RESTALLBODYPARAM')
@@ -392,17 +382,13 @@ class Regexen:
self.RESTRETURNCODES = re.compile('.*@RESTRETURNCODES')
self.RESTURLPARAM = re.compile('.*@RESTURLPARAM{')
self.RESTURLPARAMETERS = re.compile('.*@RESTURLPARAMETERS')
- self.NON_COMMENT = re.compile('^[^/].*')
################################################################################
### @brief checks for end of comment
################################################################################
def check_end_of_comment(line, r):
- if C_FILE:
- return r.NON_COMMENT.match(line)
- else:
- return r.RESTDONE.match(line)
+ return r.RESTDONE.match(line)
################################################################################
### @brief next_step
@@ -460,7 +446,7 @@ def generic_handler(cargo, r, message):
################################################################################
def generic_handler_desc(cargo, r, message, op, para, name):
- global DEBUG, C_FILE, operation
+ global DEBUG, operation
if DEBUG: print >> sys.stderr, message
(fp, last) = cargo
@@ -483,9 +469,6 @@ def generic_handler_desc(cargo, r, message, op, para, name):
raise
return next, c
- if C_FILE and line[0:4] == "////":
- continue
-
line = Typography(line)
para[name] += line + '\n'
@@ -495,7 +478,11 @@ def start_docublock(cargo, r=Regexen()):
global currentDocuBlock
(fp, last) = cargo
try:
- currentDocuBlock = last.split(' ')[2].rstrip()
+ # TODO remove when all /// are removed from the docublocks
+ if last.startswith('/// '):
+ currentDocuBlock = last.split(' ')[2].rstrip()
+ else:
+ currentDocuBlock = last.split(' ')[1].rstrip()
except Exception as x:
print >> sys.stderr, "failed to fetch docublock in '" + last + "'"
raise
@@ -768,7 +755,7 @@ def reststruct(cargo, r=Regexen()):
try:
(name, className, ptype, required, ptype2) = parameters(last).split(',')
except Exception as x:
- print >> sys.stderr, "RESTSTRUCT: 4 arguments required. You gave me: " + parameters(last)
+ print >> sys.stderr, "RESTSTRUCT: 5 arguments required. You gave me: " + parameters(last)
raise
CheckReqOpt(required)
@@ -1002,7 +989,7 @@ def examples(cargo, r=Regexen()):
def example_arangosh_run(cargo, r=Regexen()):
- global currentExample, DEBUG, C_FILE
+ global currentExample, DEBUG
if DEBUG: print >> sys.stderr, "example_arangosh_run"
fp, last = cargo
@@ -1010,7 +997,12 @@ def example_arangosh_run(cargo, r=Regexen()):
exampleHeader = brTrim(operation['x-examples'][currentExample]).strip()
# new examples code TODO should include for each example own object in json file
- examplefile = open(os.path.join(os.path.dirname(__file__), '../Documentation/Examples/' + parameters(last) + '.generated'))
+ fn = os.path.join(os.path.dirname(__file__), '../Examples/' + parameters(last) + '.generated')
+ try:
+ examplefile = open(fn)
+ except:
+ print >> sys.stderr, "Failed to open example file:\n '%s'" % fn
+ raise
operation['x-examples'][currentExample]= 'Example: ' + exampleHeader.strip('\n ') + '
'
for line in examplefile.readlines():
@@ -1035,7 +1027,7 @@ def example_arangosh_run(cargo, r=Regexen()):
################################################################################
def eof(cargo):
- global DEBUG, C_FILE
+ global DEBUG
if DEBUG: print >> sys.stderr, "eof"
################################################################################
@@ -1043,7 +1035,7 @@ def eof(cargo):
################################################################################
def error(cargo):
- global DEBUG, C_FILE
+ global DEBUG
if DEBUG: print >> sys.stderr, "error"
sys.stderr.write('Unidentifiable line:\n' + cargo)
@@ -1053,7 +1045,7 @@ def error(cargo):
################################################################################
def comment(cargo, r=Regexen()):
- global DEBUG, C_FILE
+ global DEBUG
if DEBUG: print >> sys.stderr, "comment"
(fp, last) = cargo
@@ -1062,8 +1054,6 @@ def comment(cargo, r=Regexen()):
line = fp.readline()
if not line: return eof, (fp, line)
- if r.FILE.match(line): C_FILE = True
-
next, c = next_step(fp, line, r)
if next:
@@ -1076,22 +1066,12 @@ def comment(cargo, r=Regexen()):
################################################################################
def skip_code(cargo, r=Regexen()):
- global DEBUG, C_FILE
+ global DEBUG
if DEBUG: print >> sys.stderr, "skip_code"
(fp, last) = cargo
- if not C_FILE:
- return comment((fp, last), r)
-
- while 1:
- line = fp.readline()
-
- if not line:
- return eof, (fp, line)
-
- if not r.NON_COMMENT.match(line):
- return comment((fp, line), r)
+ return comment((fp, last), r)
################################################################################
### @brief main
@@ -1225,15 +1205,25 @@ files = {}
# "structure" : [ "js/actions/api-structure.js" ],
for chapter in os.listdir(topdir):
+ if not os.path.isdir(os.path.join(topdir, chapter)) or chapter[0] == ".":
+ continue
files[chapter] = []
- for oneFile in os.listdir(topdir + "/" + chapter):
- files[chapter].append(topdir + "/" + chapter + '/' + oneFile)
+ curPath = os.path.join(topdir, chapter)
+ for oneFile in os.listdir(curPath):
+ curPath2 = os.path.join(curPath, oneFile)
+ if os.path.isfile(curPath2) and oneFile[0] != "." and oneFile.endswith(".md"):
+ files[chapter].append(os.path.join(topdir, chapter, oneFile))
for name, filenames in sorted(files.items(), key=operator.itemgetter(0)):
currentTag = name
for fn in filenames:
+ thisfn = fn
infile = open(fn)
- getOneApi(infile, name + " - " + ', '.join(filenames))
+ try:
+ getOneApi(infile, name + " - " + ', '.join(filenames))
+ except Exception as x:
+ print >> sys.stderr, "\nwhile parsing file: '%s' error: %s" % (thisfn, x)
+ raise
infile.close()
currentDocuBlock = None
lastDocuBlock = None