mercurius-integration-testing
Version:
[](https://badge.fury.io/js/mercurius-integration-testing) [](https://codecov.i
15 lines (14 loc) • 998 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GRAPHQL_WS = exports.GQL_STOP = exports.GQL_COMPLETE = exports.GQL_ERROR = exports.GQL_DATA = exports.GQL_START = exports.GQL_CONNECTION_TERMINATE = exports.GQL_CONNECTION_KEEP_ALIVE = exports.GQL_CONNECTION_ERROR = exports.GQL_CONNECTION_ACK = exports.GQL_CONNECTION_INIT = void 0;
exports.GQL_CONNECTION_INIT = 'connection_init'; // Client -> Server
exports.GQL_CONNECTION_ACK = 'connection_ack'; // Server -> Client
exports.GQL_CONNECTION_ERROR = 'connection_error'; // Server -> Client
exports.GQL_CONNECTION_KEEP_ALIVE = 'ka'; // Server -> Client
exports.GQL_CONNECTION_TERMINATE = 'connection_terminate'; // Client -> Server
exports.GQL_START = 'start'; // Client -> Server
exports.GQL_DATA = 'data'; // Server -> Client
exports.GQL_ERROR = 'error'; // Server -> Client
exports.GQL_COMPLETE = 'complete'; // Server -> Client
exports.GQL_STOP = 'stop'; // Client -> Server
exports.GRAPHQL_WS = 'graphql-ws';