pact-foundation/pact-js

View on GitHub
src/dsl/apolloGraphql.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { GraphQLInteraction } from './graphql';

export class ApolloGraphQLInteraction extends GraphQLInteraction {
  constructor() {
    super();
    this.variables = this.variables || {};
    this.operation = this.operation || null;
  }
}