Skip to content

findById

AGenson edited this page Mar 4, 2018 · 7 revisions

findById

Find the entity with the given id, and filter the fields of the result


Parameters

Property Type Default Description
ctx Object required Will serve to call a service action: ctx.call
search Object required

search field details:

Sub-Property Type Default Description
id any required ex: { id: "G-123456" }
filter Array.<String> - ex: ["id", "username"]

Return

Type: Promise

If the entity was found :

// res = entity found
Promise.resolve({
	name: "Operation Successful",
	message: `Search Complete: element found`,
	data: res
});

Else (nothing found / an error occured) :

Promise.reject({ ... });

cf - details about errors

Clone this wiki locally