Has anyone been able to fully remove a compareAtPrice from a price list using the priceListFixedPricesAdd mutation? It seems like it sets the compareAtPrice to be the same as the price when either leaving it out of the input or setting it to null. Leads to the price being struck through on the front end with the same price next to it which is not ideal. Mutation below:
thanks
mutation priceListFixedPricesAdd(
$priceListId: ID!,
$prices: [PriceListPriceInput!]!
) {
priceListFixedPricesAdd(priceListId: $priceListId, prices: $prices) {
prices {
variant {
id
}
}
userErrors {
field
message
}
}
}