graphql-mocks
Version:
Tools for setting up graphql test resolvers
19 lines (14 loc) • 356 B
JavaScript
Object.defineProperty(exports, '__esModule', {
value: true
});
function combine(...highlighters) {
return {
mark(schema) {
const referenceLists = highlighters.map(highlighter => highlighter.mark(schema));
return [].concat(...referenceLists);
}
};
}
exports.combine = combine;
//# sourceMappingURL=combine.js.map
;