saleor-dashboard/cypress/apiRequests/Page.js

19 lines
350 B
JavaScript
Raw Normal View History

export function createPage({ title, pageTypeId }) {
const mutation = `mutation{
pageCreate(input:{
title:"${title}"
pageType:"${pageTypeId}"
}){
errors{
field
message
}
page{
title
id
}
}
}`;
return cy.sendRequestWithQuery(mutation).its("body.data.pageCreate");
}