UNPKG

relay-cursor-paging

Version:

Relay Cursor-Based Pagination Support for Sequelize

16 lines (15 loc) 307 B
import { GraphQLScalarType } from "graphql"; export default function pageable(args?: {}): { after: { type: GraphQLScalarType; }; first: { type: GraphQLScalarType; }; before: { type: GraphQLScalarType; }; last: { type: GraphQLScalarType; }; };