mirror of https://gitee.com/bigwinds/arangodb
Merge branch 'devel' of github.com:triAGENS/AvocadoDB into devel
This commit is contained in:
commit
67a920d6ec
|
@ -1896,7 +1896,7 @@ static v8::Handle<v8::Value> JS_ByExampleQuery (v8::Arguments const& argv) {
|
|||
CreateErrorObject(TRI_ERROR_BAD_PARAMETER,
|
||||
"cannot convert attribute name to UTF8")));
|
||||
}
|
||||
else if (values[i] == 0) {
|
||||
else {
|
||||
return scope.Close(v8::ThrowException(
|
||||
CreateErrorObject(TRI_ERROR_BAD_PARAMETER,
|
||||
"cannot convert value to JSON")));
|
||||
|
|
|
@ -0,0 +1,642 @@
|
|||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief blueprint graph api
|
||||
///
|
||||
/// @file
|
||||
///
|
||||
/// DISCLAIMER
|
||||
///
|
||||
/// Copyright 2012 triagens GmbH, Cologne, Germany
|
||||
///
|
||||
/// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
/// you may not use this file except in compliance with the License.
|
||||
/// You may obtain a copy of the License at
|
||||
///
|
||||
/// http://www.apache.org/licenses/LICENSE-2.0
|
||||
///
|
||||
/// Unless required by applicable law or agreed to in writing, software
|
||||
/// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
/// See the License for the specific language governing permissions and
|
||||
/// limitations under the License.
|
||||
///
|
||||
/// Copyright holder is triAGENS GmbH, Cologne, Germany
|
||||
///
|
||||
/// @author Achim Brandt
|
||||
/// @author Jan Steemann
|
||||
/// @author Copyright 2012, triAGENS GmbH, Cologne, Germany
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @addtogroup AvocadoAPI
|
||||
/// @{
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
// --SECTION-- global variables
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
var actions = require("actions");
|
||||
var graph = require("graph");
|
||||
|
||||
var MY_URL = "_api/blueprint";
|
||||
var MY_CONTEXT = "api";
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
// --SECTION-- private functions
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief create graph
|
||||
///
|
||||
/// @REST{POST /_api/blueprint/graph}
|
||||
/// {"name":"...","verticesName":"...","edgesName":"..."}
|
||||
///
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
function postGraph(req, res) {
|
||||
try {
|
||||
var json = JSON.parse(req.requestBody);
|
||||
|
||||
if (!json || !(json instanceof Object)) {
|
||||
actions.resultBad(req, res, actions.ERROR_GRAPH_COULD_NOT_CREATE_GRAPH, "missing request body");
|
||||
return;
|
||||
}
|
||||
|
||||
var name = json['name'];
|
||||
var vertices = json['verticesName'];
|
||||
var edges = json['edgesName'];
|
||||
|
||||
var g = new graph.Graph(name, vertices, edges);
|
||||
|
||||
if (g._properties == null) {
|
||||
throw "no properties of graph found";
|
||||
}
|
||||
actions.resultOk(req, res, actions.HTTP_OK, { "graph" : g._properties} );
|
||||
}
|
||||
catch (err) {
|
||||
actions.resultBad(req, res, actions.ERROR_GRAPH_COULD_NOT_CREATE_GRAPH, err);
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief get graph
|
||||
///
|
||||
/// @REST{GET /_api/blueprint/graph/@FA{graph-identifier}}
|
||||
///
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
function getGraph(req, res) {
|
||||
if (req.suffix.length < 1) {
|
||||
actions.resultBad(req, res, actions.ERROR_GRAPH_INVALID_GRAPH, "graph not found");
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
var id = req.suffix[0];
|
||||
if (req.suffix.length > 1) {
|
||||
id += "/" + req.suffix[1];
|
||||
}
|
||||
|
||||
var g = new graph.Graph(id);
|
||||
|
||||
if (g._properties == null) {
|
||||
throw "no properties of graph found";
|
||||
}
|
||||
|
||||
actions.resultOk(req, res, actions.HTTP_OK, { "graph" : g._properties} );
|
||||
}
|
||||
catch (err) {
|
||||
actions.resultBad(req, res, actions.ERROR_GRAPH_INVALID_GRAPH, err);
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief delete graph
|
||||
///
|
||||
/// @REST{DELETE /_api/blueprint/graph/@FA{graph-identifier}}
|
||||
///
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
function deleteGraph(req, res) {
|
||||
if (req.suffix.length < 1) {
|
||||
actions.resultBad(req, res, actions.ERROR_GRAPH_INVALID_GRAPH, "graph not found");
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
var id = req.suffix[0];
|
||||
if (req.suffix.length > 1) {
|
||||
id += "/" + req.suffix[1];
|
||||
}
|
||||
|
||||
var g = new graph.Graph(id);
|
||||
|
||||
if (g._properties == null) {
|
||||
throw "no properties of graph found";
|
||||
}
|
||||
|
||||
actions.resultOk(req, res, actions.HTTP_OK, { "graph" : g._properties} );
|
||||
}
|
||||
catch (err) {
|
||||
actions.resultBad(req, res, actions.ERROR_GRAPH_INVALID_GRAPH, err);
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief actions gateway
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
actions.defineHttp({
|
||||
url : MY_URL + "/graph",
|
||||
context : MY_CONTEXT,
|
||||
|
||||
callback : function (req, res) {
|
||||
switch (req.requestType) {
|
||||
case (actions.POST) :
|
||||
postGraph(req, res);
|
||||
break;
|
||||
|
||||
case (actions.GET) :
|
||||
getGraph(req, res);
|
||||
break;
|
||||
|
||||
case (actions.DELETE) :
|
||||
deleteGraph(req, res);
|
||||
break;
|
||||
|
||||
default:
|
||||
actions.resultUnsupported(req, res);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @}
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @addtogroup AvocadoAPI
|
||||
/// @{
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
// --SECTION-- private functions
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief create vertex
|
||||
///
|
||||
/// @REST{POST /_api/blueprint/vertex?graph=@FA{graph-identifier}}
|
||||
/// {"$id":"...","key1":"...","key2":"..."}
|
||||
///
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
function postVertex(req, res) {
|
||||
try {
|
||||
// name/id of the graph
|
||||
var name = req.parameters['graph'];
|
||||
if (name == undefined) {
|
||||
throw "missing graph name";
|
||||
}
|
||||
var g = new graph.Graph(name);
|
||||
|
||||
var json = JSON.parse(req.requestBody);
|
||||
|
||||
//if (!json || !(json instanceof Object)) {
|
||||
// actions.resultBad(req, res, actions.ERROR_GRAPH_COULD_NOT_CREATE_GRAPH, "missing request body");
|
||||
// return;
|
||||
//}
|
||||
|
||||
var id = undefined;
|
||||
|
||||
if (json) {
|
||||
id = json["$id"];
|
||||
}
|
||||
|
||||
var v = g.addVertex(id, body);
|
||||
|
||||
if (v == undefined || v._properties == undefined) {
|
||||
throw "could not create vertex";
|
||||
}
|
||||
|
||||
actions.resultOk(req, res, actions.HTTP_OK, { "vertex" : v._properties } );
|
||||
}
|
||||
catch (err) {
|
||||
actions.resultBad(req, res, actions.ERROR_GRAPH_COULD_NOT_CREATE_VERTEX, err);
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief get vertex
|
||||
///
|
||||
/// @REST{GET /_api/blueprint/vertex/@FA{vertex-identifier}?graph=@FA{graph-identifier}}
|
||||
///
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
function getVertex(req, res) {
|
||||
if (req.suffix.length < 1) {
|
||||
actions.resultBad(req, res, actions.ERROR_GRAPH_INVALID_VERTEX, "vertex not found");
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
// name/id of the graph
|
||||
var name = req.parameters['graph'];
|
||||
if (name == undefined) {
|
||||
throw "missing graph name";
|
||||
}
|
||||
var g = new graph.Graph(name);
|
||||
|
||||
var id = req.suffix[0];
|
||||
if (req.suffix.length > 1) {
|
||||
id += "/" + req.suffix[1];
|
||||
}
|
||||
|
||||
var v = g.getVertex(id);
|
||||
|
||||
if (v == undefined || v._properties == undefined) {
|
||||
throw "no vertex found";
|
||||
}
|
||||
|
||||
actions.resultOk(req, res, actions.HTTP_OK, { "vertex" : v._properties} );
|
||||
}
|
||||
catch (err) {
|
||||
actions.resultBad(req, res, actions.ERROR_GRAPH_INVALID_VERTEX, err);
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief delete vertex
|
||||
///
|
||||
/// @REST{DELETE /_api/blueprint/vertex/@FA{vertex-identifier}?graph=@FA{graph-identifier}}
|
||||
///
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
function deleteVertex(req, res) {
|
||||
if (req.suffix.length < 1) {
|
||||
actions.resultBad(req, res, actions.ERROR_GRAPH_INVALID_VERTEX, "vertex not found");
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
// name/id of the graph
|
||||
var name = req.parameters['graph'];
|
||||
if (name == undefined) {
|
||||
throw "missing graph name";
|
||||
}
|
||||
var g = new graph.Graph(name);
|
||||
|
||||
var id = req.suffix[0];
|
||||
if (req.suffix.length > 1) {
|
||||
id += "/" + req.suffix[1];
|
||||
}
|
||||
|
||||
var v = g.getVertex(id);
|
||||
|
||||
if (v == undefined || v._properties == undefined) {
|
||||
throw "no vertex found";
|
||||
}
|
||||
|
||||
g.removeVertex(v);
|
||||
|
||||
actions.resultOk(req, res, actions.HTTP_OK, { "deleted" : true} );
|
||||
}
|
||||
catch (err) {
|
||||
actions.resultBad(req, res, actions.ERROR_GRAPH_INVALID_VERTEX, err);
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief actions gateway
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
actions.defineHttp({
|
||||
url : MY_URL + "/vertex",
|
||||
context : MY_CONTEXT,
|
||||
|
||||
callback : function (req, res) {
|
||||
switch (req.requestType) {
|
||||
case (actions.POST) :
|
||||
postVertex(req, res);
|
||||
break;
|
||||
|
||||
case (actions.GET) :
|
||||
getVertex(req, res);
|
||||
break;
|
||||
|
||||
case (actions.DELETE) :
|
||||
deleteVertex(req, res);
|
||||
break;
|
||||
|
||||
default:
|
||||
actions.resultUnsupported(req, res);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @}
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @addtogroup AvocadoAPI
|
||||
/// @{
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
// --SECTION-- private functions
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief get vertices
|
||||
///
|
||||
/// @REST{GET /_api/blueprint/vertices?graph=@FA{graph-identifier}}
|
||||
///
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
function getVertices(req, res) {
|
||||
try {
|
||||
// name/id of the graph
|
||||
var name = req.parameters['graph'];
|
||||
if (name == undefined) {
|
||||
throw "missing graph name";
|
||||
}
|
||||
var g = new graph.Graph(name);
|
||||
|
||||
var v = g.getVertices();
|
||||
|
||||
var result = {};
|
||||
result["vertices"] = [];
|
||||
|
||||
while (v.hasNext()) {
|
||||
var e = v.next();
|
||||
result["vertices"].push(e._properties);
|
||||
}
|
||||
|
||||
actions.resultOk(req, res, actions.HTTP_OK, result);
|
||||
}
|
||||
catch (err) {
|
||||
actions.resultBad(req, res, actions.ERROR_GRAPH_INVALID_VERTEX, err);
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief actions gateway
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
actions.defineHttp({
|
||||
url : MY_URL + "/vertices",
|
||||
context : MY_CONTEXT,
|
||||
|
||||
callback : function (req, res) {
|
||||
switch (req.requestType) {
|
||||
case (actions.GET) :
|
||||
getVertices(req, res);
|
||||
break;
|
||||
|
||||
default:
|
||||
actions.resultUnsupported(req, res);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @}
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @addtogroup AvocadoAPI
|
||||
/// @{
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
// --SECTION-- private functions
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief create edge
|
||||
///
|
||||
/// @REST{POST /_api/blueprint/edge?graph=@FA{graph-identifier}}
|
||||
/// {"$id":"...","out":"...","ine":"...","$label":"...","data":{...}}
|
||||
///
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
function postEdge(req, res) {
|
||||
try {
|
||||
// name/id of the graph
|
||||
var name = req.parameters['graph'];
|
||||
if (name == undefined) {
|
||||
throw "missing graph name";
|
||||
}
|
||||
var g = new graph.Graph(name);
|
||||
|
||||
var json = JSON.parse(req.requestBody);
|
||||
|
||||
if (!json || !(json instanceof Object)) {
|
||||
actions.resultBad(req, res, actions.ERROR_GRAPH_COULD_NOT_CREATE_VERTEX, "missing request body");
|
||||
return;
|
||||
}
|
||||
|
||||
var id = json["$id"];
|
||||
var out = g.getVertex(json["out"]);
|
||||
var ine = g.getVertex(json["ine"]);
|
||||
var label = json["$label"];
|
||||
|
||||
var e = g.addEdge(id, out, ine, label, json);
|
||||
|
||||
if (e == undefined || e._properties == undefined) {
|
||||
throw "could not create edge";
|
||||
}
|
||||
|
||||
actions.resultOk(req, res, actions.HTTP_OK, { "edge" : e._properties } );
|
||||
}
|
||||
catch (err) {
|
||||
actions.resultBad(req, res, actions.ERROR_GRAPH_COULD_NOT_CREATE_VERTEX, err);
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief get edge
|
||||
///
|
||||
/// @REST{GET /_api/blueprint/edge/@FA{edge-identifier}?graph=@FA{graph-identifier}}
|
||||
///
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
function getEdge(req, res) {
|
||||
if (req.suffix.length < 1) {
|
||||
actions.resultBad(req, res, actions.ERROR_GRAPH_INVALID_VERTEX, "edge not found");
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
// name/id of the graph
|
||||
var name = req.parameters['graph'];
|
||||
if (name == undefined) {
|
||||
throw "missing graph name";
|
||||
}
|
||||
var g = new graph.Graph(name);
|
||||
|
||||
var id = req.suffix[0];
|
||||
if (req.suffix.length > 1) {
|
||||
id += "/" + req.suffix[1];
|
||||
}
|
||||
|
||||
var e = g.getVertex(id);
|
||||
|
||||
if (e == undefined || e._properties == undefined) {
|
||||
throw "no edge found";
|
||||
}
|
||||
|
||||
actions.resultOk(req, res, actions.HTTP_OK, { "edge" : e._properties} );
|
||||
}
|
||||
catch (err) {
|
||||
actions.resultBad(req, res, actions.ERROR_GRAPH_INVALID_VERTEX, err);
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief delete edge
|
||||
///
|
||||
/// @REST{DELETE /_api/blueprint/edge/@FA{edge-identifier}?graph=@FA{graph-identifier}}
|
||||
///
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
function deleteEdge(req, res) {
|
||||
if (req.suffix.length < 1) {
|
||||
actions.resultBad(req, res, actions.ERROR_GRAPH_INVALID_VERTEX, "edge not found");
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
// name/id of the graph
|
||||
var name = req.parameters['graph'];
|
||||
if (name == undefined) {
|
||||
throw "missing graph name";
|
||||
}
|
||||
var g = new graph.Graph(name);
|
||||
|
||||
var id = req.suffix[0];
|
||||
if (req.suffix.length > 1) {
|
||||
id += "/" + req.suffix[1];
|
||||
}
|
||||
|
||||
var e = g.getVertex(id);
|
||||
|
||||
if (e == undefined || e._properties == undefined) {
|
||||
throw "no edge found";
|
||||
}
|
||||
|
||||
g.removeEdge(e);
|
||||
|
||||
actions.resultOk(req, res, actions.HTTP_OK, { "deleted" : true} );
|
||||
}
|
||||
catch (err) {
|
||||
actions.resultBad(req, res, actions.ERROR_GRAPH_INVALID_VERTEX, err);
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief actions gateway
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
actions.defineHttp({
|
||||
url : MY_URL + "/edge",
|
||||
context : MY_CONTEXT,
|
||||
|
||||
callback : function (req, res) {
|
||||
switch (req.requestType) {
|
||||
case (actions.POST) :
|
||||
postEdge(req, res);
|
||||
break;
|
||||
|
||||
case (actions.GET) :
|
||||
getEdge(req, res);
|
||||
break;
|
||||
|
||||
case (actions.DELETE) :
|
||||
deleteEdge(req, res);
|
||||
break;
|
||||
|
||||
default:
|
||||
actions.resultUnsupported(req, res);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @}
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @addtogroup AvocadoAPI
|
||||
/// @{
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
// --SECTION-- private functions
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief get edges
|
||||
///
|
||||
/// @REST{GET /_api/blueprint/edges?graph=@FA{graph-identifier}}
|
||||
///
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
function getEdges(req, res) {
|
||||
try {
|
||||
// name/id of the graph
|
||||
var name = req.parameters['graph'];
|
||||
if (name == undefined) {
|
||||
throw "missing graph name";
|
||||
}
|
||||
var g = new graph.Graph(name);
|
||||
|
||||
var v = g.getEdges();
|
||||
|
||||
var result = {
|
||||
"edges" : []
|
||||
}
|
||||
|
||||
while (v.hasNext()) {
|
||||
result.edges.push(v.next()._properties);
|
||||
}
|
||||
|
||||
actions.resultOk(req, res, actions.HTTP_OK, result);
|
||||
}
|
||||
catch (err) {
|
||||
actions.resultBad(req, res, actions.ERROR_GRAPH_INVALID_VERTEX, err);
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief actions gateway
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
actions.defineHttp({
|
||||
url : MY_URL + "/edges",
|
||||
context : MY_CONTEXT,
|
||||
|
||||
callback : function (req, res) {
|
||||
switch (req.requestType) {
|
||||
case (actions.GET) :
|
||||
getEdges(req, res);
|
||||
break;
|
||||
|
||||
default:
|
||||
actions.resultUnsupported(req, res);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @}
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// Local Variables:
|
||||
// mode: outline-minor
|
||||
// outline-regexp: "^\\(/// @brief\\|/// @addtogroup\\|// --SECTION--\\|/// @page\\|/// @}\\)"
|
||||
// End:
|
|
@ -838,6 +838,16 @@ function Graph(name, vertices, edges) {
|
|||
graphProperties = gdb.firstExample('name', name);
|
||||
|
||||
if (graphProperties === null) {
|
||||
try {
|
||||
graphProperties = gdb.document(name);
|
||||
}
|
||||
catch (e) {
|
||||
throw "no graph named '" + name + "' found";
|
||||
}
|
||||
|
||||
if (graphProperties === null) {
|
||||
throw "no graph named '" + name + "' found";
|
||||
}
|
||||
throw "no graph named '" + name + "' found";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue