I use GraphQL to query the product variants with barcodes not starting with Super, but I still see variants with barcodes with Super as prefixes.
query newVariantsQuery {
productVariants (first:10 query:“-barcode:Super*”) {
pageInfo {
hasNextPage
}
edges {
cursor
node {
availableForSale
barcode
compareAtPrice
createdAt
displayName
id
inventoryItem {
id
inventoryLevels (first:1) {
edges {
node {
available
id
}
}
}
tracked
unitCost {
amount
}
}
position
price
product {
createdAt
description
descriptionHtml
hasOnlyDefaultVariant
id
options {
id
name
values
}
productType
publishedAt
status
tags
title
totalVariants
updatedAt
vendor
}
selectedOptions {
name
value
}
sku
storefrontId
taxable
title
updatedAt
weight
weightUnit
}
}
}
}
