labo-components
Version:
12 lines (10 loc) • 302 B
JavaScript
const SPARQLPluginResultMapper = {
//TODO this function only works for the outcome of SearchAPI.mediaFragmentSearch()
formatResultData : function(data) {
const formattedData = data.hits.hits.map((hit) => {
return hit;
});
return formattedData;
}
}
export default SPARQLPluginResultMapper;