Context:
- Playwright Version: 1.22.2
- Operating System: Mac 12.4
- Node.js version: v16.14.2
Code Snippet
import test from "@playwright/test";
test("sample", async ({ request }) => {
await request.post("https://swapi.skyra.pw/", {
data: {
query: `{
getFilm(film: 1) {
director
episodeId
openingCrawl
}
}`,
},
});
});
Describe the bug
Request body of a Graphql POST call is not displayed in the trace viewer.

Can the request query/mutation be also displayed in the trace viewer?
Context:
Code Snippet
Describe the bug
Request bodyof a Graphql POST call is not displayed in the trace viewer.Can the request query/mutation be also displayed in the trace viewer?