The issue is that gql is on one endpoint, and if mirage is handling that endpoint how do you do a "passthrough" of select requests to that endpoint.
Maybe if mirage had a passthrough function:
this.passthrough('/api/graphql', (req) => req.body.includes('something'));
this.post('/api/graphql', gql);
Or return this.passAlong() or similar inside the post handler based on logic, where if you return it the request continues to server. cc @samselikoff
The issue is that gql is on one endpoint, and if mirage is handling that endpoint how do you do a "passthrough" of select requests to that endpoint.
Maybe if mirage had a passthrough function:
Or
return this.passAlong()or similar inside the post handler based on logic, where if you return it the request continues to server. cc @samselikoff