join-monster
Version:
A GraphQL to SQL query execution layer for batch data fetching.
12 lines (11 loc) • 351 B
JavaScript
;
function throwErr() {
throw new Error('This type of pagination not supported on this dialect');
}
module.exports = {
handlePaginationAtRoot: throwErr,
handleJoinedOneToManyPaginated: throwErr,
handleBatchedOneToManyPaginated: throwErr,
handleJoinedManyToManyPaginated: throwErr,
handleBatchedManyToManyPaginated: throwErr
};