You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function get(context, params) {
// return zero or more document nodes
};
function post(context, params, input) {
// return zero or more document nodes
};
function put(context, params, input) {
// return at most one document node
};
function deleteFunction(context, params) {
// return at most one document node
};
exports.GET = get;
exports.POST = post;
exports.PUT = put;
exports.DELETE = deleteFunction;
Could be good to be able to initialize files for javascript on extension and transform :
mlCreateResource : https://docs.marklogic.com/guide/rest-dev/extensions#id_15531
mlCreateTransform : http://docs.marklogic.com/guide/node-dev/extensions#id_27983
The text was updated successfully, but these errors were encountered: