The GraphQL call:
query AllCategories { allCategories { nodes { name } } }
The corelating code:
// src/mocks/handlers.js import { graphql } from "msw" export const handlers = [ graphql.query("AllCategories", (_req, res, ctx) => { return res( ctx.data({ allCategories: { nodes: [ { name: "Testing", }, ], }, }) ) }), ]