mirror of https://gitee.com/bigwinds/arangodb
400 B
400 B
Route.notes(...description)
Set the long description for this route in the documentation
Examples
Version with comment:
/** Short description
*
* Longer description
* with multiple lines
*/
app.get("/foxx", function() {
});
is identical to:
app.get("/foxx", function() {
})
.summary("Short description")
.notes(["Longer description", "with multiple lines"]);