How to use the graphback.graphQLInputContext.createModelContext 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 / TestxServer.ts View on Github external
constructor(options: TestxServerOptions) {
    this.options = options;

    this.context = graphQLInputContext.createModelContext(
      options.schema,
      DEFAULT_CONFIG
    );
  }