Sending queries for multiple values of the same criteria

Hi @jeremyw!
We don’t have the ability to do this at the moment. We do have on our scope to be able to use GraphQL Aliases, which will allow you to get a bunch of them at once.

Example:

query {
  aliasOne: product(sku: "1122334464") {
    request_id
    complexity
    data {
      sku
      name
      barcode
    }
  }
  aliasTwo: product(sku: "1122334466") {
    request_id
    complexity
    data {
      sku
      name
      barcode
    }
  }
}

But we don’t have an ETA on when this might be worked on.
Would this work for you?
Thanks in advance!
Tom

1 Like