UNPKG

@feathers-plus/graphql

Version:

A high performance GraphQL adapter for SQL and non-SQL databases.

23 lines (20 loc) 802 B
const { extractAllItems, extractFirstItem } = require('./feathers/extract-items'); const convertArgsToFeathers = require('./feathers/convert-args-to-feathers'); const convertArgsToOrderBy = require('./feathers/convert-args-to-order-by'); const convertArgsToParams = require('./feathers/convert-args-to-params'); const convertArgsToWhere = require('./feathers/convert-args-to-where'); const feathersBatchLoader = require('./feathers/feathers-batch-loader'); const { resolverTypes, schemaTypes } = require('./graphql-types'); const genAndRunSql = require('./gen-and-run-sql'); module.exports = { convertArgsToFeathers, convertArgsToOrderBy, convertArgsToParams, convertArgsToWhere, extractAllItems, extractFirstItem, genAndRunSql, feathersBatchLoader, resolverTypes, schemaTypes };