Send a GraphQL query using Postman and verify the response
Preconditions (2)
Step 1: Open Postman and create a new POST request
Step 2: Set the request URL to the GraphQL API endpoint
Step 3: In the Body tab, select 'GraphQL' as the body type
Step 4: Enter the following GraphQL query in the 'QUERY' section: '{ user(id: "1") { id name email } }'
Step 5: Click 'Send' to execute the request
Step 6: Observe the response body
✅ Expected Result: The response body contains the user object with id '1' and fields 'id', 'name', and 'email' with valid values