How to Override GraphQL API Query & Mutations
Abhishek Sachan
July 24, 2024
Once you understand how to debug and override GraphQL API using Requestly. You might want to explore how you can use Requestly in different scenarios of your development cycle(SDLC). Let’s explore how modifying the request body can help.
If you need to override the request body for a GraphQL API. For scenarios where you need to switch models or modify fields in a query, use the programmatic option in the request body rule to selectively modify GraphQL requests.
Video Tutorial
Steps to Configure Rule
Follow the below steps to override API Requests.
- Create a new Modify Request Rule.
- Use your API hostname & path as source conditions like –
company.com/api/graphql
- Under Request Body select
Programmatic
- We can filter and modify the request using the below code. Make sure you replace
[modified query]
with your query. - Save the rule and test.
function modifyRequestBody(args) {
const { method, url, body, bodyAsJson } = args;
if(bodyAsJson[0].operationName = 'ListArticles'){
bodyAsJson[0].query = '[modified query]'
}
return body;
}
Further Reading
Abhishek Sachan
Abhishek is Growth Engineer at Requestly and has profound love for programming.
Contents
Subscribe for latest updates
Share this article
Related posts
Our journey to finding Product-Market Fit
Sachin Jain
December 5, 2024
How Blockthrough uses Requestly to seamlessly test their JS on publisher websites
Sagar Soni
December 4, 2024
The Best Open Source API Mocking Tool for developers (With examples)
Anmol Baranwal
December 2, 2024