in entity-browser-frontend/app/service/entity-type.js [8:19]
function search(db, typeId, term, offset, pageSize) {
return $http.get('api/dbs/' + db.uuid + '/entities', {
params: {
id: typeId,
q: term,
offset: offset,
pageSize: (pageSize ? pageSize : 50)
}
}).then(function (response) {
return response.data;
});
}