mirror of https://gitee.com/bigwinds/arangodb
Merge branch 'devel' of github.com:triAGENS/ArangoDB into devel
This commit is contained in:
commit
3a313185d1
|
@ -447,6 +447,8 @@
|
||||||
* This has to contain the vertex-collection name.
|
* This has to contain the vertex-collection name.
|
||||||
*/
|
*/
|
||||||
controller.post("/:graph/vertex", function(req, res) {
|
controller.post("/:graph/vertex", function(req, res) {
|
||||||
|
require("console").log("+++++++++++++++++++++++++");
|
||||||
|
require("console").log(req);
|
||||||
var name = req.params("graph");
|
var name = req.params("graph");
|
||||||
var body = req.params("collection");
|
var body = req.params("collection");
|
||||||
var g;
|
var g;
|
||||||
|
@ -751,7 +753,7 @@
|
||||||
/** Delete an edge definition.
|
/** Delete an edge definition.
|
||||||
*
|
*
|
||||||
* Removes an existing edge definition from this graph.
|
* Removes an existing edge definition from this graph.
|
||||||
* All data stored in the collections is dropped as well as long
|
* All data stored in the edge collection is dropped as well as long
|
||||||
* as it is not used in other graphs.
|
* as it is not used in other graphs.
|
||||||
*/
|
*/
|
||||||
controller.del("/:graph/edge/:definition", function(req, res) {
|
controller.del("/:graph/edge/:definition", function(req, res) {
|
||||||
|
|
Loading…
Reference in New Issue