npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@vizworx/autocrud

v4.0.0

Published

Tools for generating resolvers and Knex queries from a GraphQL schema

Downloads

48

Readme

AutoCRUD (@vizworx/autocrud)

NPM Version License

Tools for generating resolvers and Knex queries from a GraphQL schema

AutoCRUD is intended to simplify the process of connecting a GraphQL API and database - in many cases eliminating the need to write resolvers at all.

Documentation

Usage

yarn add @vizworx/autocrud "graphql@^14.0.0 || ^15.0.0" "knex@^2.0 || ^1.0 || ^0.95"

Minimal example

This example uses apollo-server-express, but Autocrud should be expected to work with any library following the GraphQL spec.

import { ApolloServer, makeExecutableSchema, gql } from 'apollo-server-express';
import {
  initialize as initializeAutoCRUD,
  typeDefs as AutoCRUDTypeDefs,
} from '@vizworx/autocrud';

import knex from './setupKnexInstance';
import typeDefs from './typeDefs';

const schema = makeExecutableSchema({
  typeDefs: [
    ...AutoCRUDTypeDefs,
    gql`
      type User @autocrud(table: "users") {
        id: ID!
        createdAt: DateTime!
        updatedAt: DateTime!
        email: String!
        name: String!
        avatarURL: String!
      }
    `,
  ],
});

const { getContext: getAutoCRUDContext } = initializeAutoCRUD(schema);

return new ApolloServer({
  schema,
  context: () => ({
    ...getAutoCRUDContext({ knex }),
  }),
});

Assumptions

  • All database tables referenced from an @autocrud(table: ___) declaration must have an id column. This does not apply to pivot relationships, as { leftId, rightId } are sufficient, unless the schema exposes that table directly:
    type AllRelationships @autocrud(table: "relationships") {
      leftId
      rightId
    }

Limitations

  • MySQL and PostgreSQL are the only officially supported databases at this time. Our tests are also run against SQLite (minimum version of 3.30.0), and it is "unsupported" only because its flexibility means we can't guarantee everything will behave correctly. Contributions providing support for other databases are more than welcome.
  • Microsoft SQL Server is explicitly not supported; node-mssql has dropped support for running database transactions in a Promise.all (https://github.com/tediousjs/node-mssql/issues/491).
  • !11 - AutoCRUD does not currently support union types. Fields with a union type will be omitted when generating Filter and OrderBy inputs, and queries with union fields will probably throw an error.
  • Interface fields do not currently support the through argument for relationships.

Development

Testing

  • yarn test: Run the test suite using an in-memory SQLite instance. This is faster than using the Docker scripts but also prone to error, as SQLite has fewer constraints than other database clients.
  • yarn test:start-mysql
  • yarn test:start-postgres: Start a database using Docker. (Will block the current terminal until it is stopped)
  • yarn test:mysql
  • yarn test:postgres: Run the test suite.
  • yarn test:stop-mysql
  • yarn test:stop-postgres: Stop the Docker container.

Running with local projects

Because AutoCRUD relies on peer dependencies, linking it to a local project requires a few extra steps.

When developing locally yarn will install everything, allowing AutoCRUD's tests, linting, etc. to be run.

Peer dependencies need to be removed when using AutoCRUD from another package, however, so we've added a script to take care of building, installing, and linking the project for you.

Yarn-based projects

# /autocrud
yarn run deploy-local

# /other-project
yarn link ../path/to/autocrud
yarn run start --preserve-symlinks

NPM-based projects

# /autocrud
npm run deploy-local

# /other-project
npm link @vizworx/autocrud
npm run start -- --preserve-symlinks

In either case, depending on your project's configuration you may have to experiment with adding/removing the extra -- when starting to have --preserve-symlinks passed correctly to the runtime.

License

MIT © VizworX