Hello,
Is it possible to query the product with only the barcode? I have built a document that allows our pickers to scan a barcode and mark it with various issues (restock/incorrect location/etc.) I would like to bring in relevant information about the product without having to look up the skus or IDs as this list my become pretty large.
This is what I was hoping to use:
query {
product(barcode:“1234567890”) {
data {
sku
warehouse_products {
on_hand
inventory_bin
inventory_overstock_bin
}
}
}
}