@vtex/api
Version:
VTEX I/O API client
18 lines (17 loc) • 604 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.IOGraphQLClient = void 0;
const GraphQLClient_1 = require("../HttpClient/GraphQLClient");
const IOClient_1 = require("./IOClient");
/**
* A GraphQL client that can be instantiated by the Serviceruntime layer.
*/
class IOGraphQLClient extends IOClient_1.IOClient {
constructor(context, options) {
super(context, options);
this.context = context;
this.options = options;
this.graphql = new GraphQLClient_1.GraphQLClient(this.http);
}
}
exports.IOGraphQLClient = IOGraphQLClient;
;