How do I take the return result from the first query and assign that result to a variable to use in the second query? I need the first value result before I can make the second call, but would like to make only 1 call to accomplish this. My query:
query {
test1(sku: "12345"){
price
}
test2(itemPrice: $price){
isSuccessful
}
}
