@envelop/persisted-operations
Version:
This plugin allow you to enforce execution of persisted (hashed) operation, using a custom store.
53 lines (52 loc) • 2.38 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.usePersistedOperations = void 0;
exports.readOperationId = readOperationId;
const graphql_1 = require("graphql");
const utils_js_1 = require("./utils.js");
const DEFAULT_OPTIONS = {
onlyPersisted: false,
};
const contextProperty = Symbol('persistedOperationId');
function readOperationId(context) {
return context[contextProperty];
}
const usePersistedOperations = (rawOptions) => {
const options = {
...DEFAULT_OPTIONS,
...rawOptions,
};
return {
onParse({ context, params, extendContext, setParsedDocument }) {
const operationId = options.extractOperationId
? options.extractOperationId(context)
: (0, utils_js_1.operationIdFromSource)(params.source);
if (!operationId) {
if (options.onlyPersisted) {
throw new graphql_1.GraphQLError('Must provide operation id');
}
return;
}
const store = typeof options.store === 'function' ? options.store(context) : options.store;
if (!store) {
throw new graphql_1.GraphQLError('Must provide store for persisted-operations!');
}
const rawResult = store.get(operationId);
if (rawResult) {
const document = typeof rawResult === 'string' ? (0, graphql_1.parse)(rawResult) : rawResult;
extendContext({ [contextProperty]: operationId });
setParsedDocument(document);
return;
}
if (options.onMissingMatch)
options.onMissingMatch(context, operationId);
if (options.onlyPersisted) {
// we want to throw an error only when "onlyPersisted" is true, otherwise we let execution continue normally
throw new graphql_1.GraphQLError(`Unable to match operation with id '${operationId}'`);
}
// if we reach this stage we could not retrieve a persisted operation and we didn't throw any error as onlyPersisted is false
// hence we let operation continue assuming consumer is not passing an operation id, but a plain query string, with current request.
},
};
};
exports.usePersistedOperations = usePersistedOperations;
;