Hi @ShubhamAg2 To fetch the response from the REST API via API Mesh, after adding the REST API as a source, you need to make sure to define the GraphQL schema and resolvers that map your GraphQL queries to the REST API requests. This way, you can query the data using GraphQL and get the same result as the REST API.
1- First add the REST API as a source in API Mesh following the steps outlined in the documentation you provided.
2- You need to define the GraphQL schema for the API.
3- Define the resolver in the API Mesh configuration. The resolver will handle fetching data from the REST API when the GraphQL query is executed.
4- Once the GraphQL schema and resolvers are set up, try query the GraphQL endpoint generated by API Mesh.
ONce done, Hit the GraphQL endpoint with the query in Postman.
Hope this helps.