How to use the graphback.KnexDBDataProvider function in graphback

To help you get started, we’ve selected a few graphback examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github aerogear / graphql-testx / src / InMemoryDatabase.ts View on Github external
constructor(knex: Knex) {
    this.knex = knex;
    this.provider = new KnexDBDataProvider(knex);
  }