Executed after a list of objects has been fetched.
By default, returns Response.ok with the encoded list of founds objects (which may be the empty list).
Source
FutureOr<Response> didFindObjects(List<InstanceType> objects) {
return new Response.ok(objects);
}