// parseGraphQLRequest.mjs
async function parseQuery(query) {
const { parse } = await import("graphql").catch((error) => {
console.error('[MSW] Failed to parse a GraphQL query: cannot import the "graphql" module. Please make sure you install it if you wish to intercept GraphQL requests. See the original import error below.');
throw error;
});
Build results