https://cypress.io logo
Hello, I have a `cy.request()` whose response body...
# e2e-testing
h
Hello, I have a
cy.request()
whose response body is like,
Copy code
[
  {
    id: 1234
    name: cypress
    email: cypress@cypress.io
    <other fields>
  },
  {
    id: 1235
    name: cypress
    email: cypress@cypress.io
    <other fields>
  },
]
How can i extract only the id, name and email fields in the
then()
block?