export function createChannel({ isActive = true, name, slug = name, currencyCode = "PLN", defaultCountry = "PL" }) { const createChannelMutation = `mutation{ channelCreate(input: { isActive: ${isActive} name: "${name}" slug: "${slug}" currencyCode: "${currencyCode}" defaultCountry: ${defaultCountry} }){ channel{ id name slug } errors{ code message } } }`; return cy .sendRequestWithQuery(createChannelMutation) .its("body.data.channelCreate.channel"); } export function getChannels() { const getChannelsInfoQuery = `query{ channels{ name id isActive slug currencyCode } }`; return cy.sendRequestWithQuery(getChannelsInfoQuery); } export function deleteChannel(channelId, targetChannelId) { const deleteChannelMutation = `mutation{ channelDelete(id: "${channelId}", input:{ channelId: "${targetChannelId}" }){ channel{ name } channelErrors{ message } } }`; return cy.sendRequestWithQuery(deleteChannelMutation); } export function activateChannel(channelId) { const mutation = `mutation{ channelActivate(id:"${channelId}"){ errors{ field message } } }`; return cy.sendRequestWithQuery(mutation); }