1
0
Fork 0

added declaration in update vertex

This commit is contained in:
Thomas Schmidts 2014-05-21 14:25:21 +02:00
parent 4af97257b9
commit 166d010b35
1 changed files with 8 additions and 2 deletions

View File

@ -858,13 +858,16 @@ function update_graph_vertex (req, res, g, isPatch) {
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
/// @brief updates a vertex /// @brief updates a vertex
/// ///
/// @RESTHEADER{PUT /_api/graph/`graph-name`/vertex,update vertex} /// @RESTHEADER{PUT /_api/graph/`graph-name`/`vertex-name`,update vertex}
/// ///
/// @RESTURLPARAMETERS /// @RESTURLPARAMETERS
/// ///
/// @RESTURLPARAM{graph-name,string,required} /// @RESTURLPARAM{graph-name,string,required}
/// The name of the graph /// The name of the graph
/// ///
/// @RESTURLPARAM{vertex-name,string,required}
/// The name of the vertex
///
/// @RESTQUERYPARAMETERS /// @RESTQUERYPARAMETERS
/// ///
/// @RESTQUERYPARAM{waitForSync,boolean,optional} /// @RESTQUERYPARAM{waitForSync,boolean,optional}
@ -933,13 +936,16 @@ function put_graph_vertex (req, res, g) {
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
/// @brief updates a vertex /// @brief updates a vertex
/// ///
/// @RESTHEADER{PATCH /_api/graph/`graph-name`/vertex,update vertex} /// @RESTHEADER{PATCH /_api/graph/`graph-name`/`vertex-name`,update vertex}
/// ///
/// @RESTURLPARAMETERS /// @RESTURLPARAMETERS
/// ///
/// @RESTURLPARAM{graph-name,string,required} /// @RESTURLPARAM{graph-name,string,required}
/// The name of the graph /// The name of the graph
/// ///
/// @RESTURLPARAM{vertex-name,string,required}
/// The name of the vertex
///
/// @RESTQUERYPARAMETERS /// @RESTQUERYPARAMETERS
/// ///
/// @RESTQUERYPARAM{waitForSync,boolean,optional} /// @RESTQUERYPARAM{waitForSync,boolean,optional}