Check balances of bitcoin adress

This is the variable declaration syntax. If you using https://graphql.bitquery.io then you need to specify those variables in the editor section below the main editor section

Hi You
This Query i use, but it not working, in parameter $address: [String!]
Please check for me. Thank alot
This Query
" query
($network: BitcoinNetwork!, $address: [String!], $limit: Int!, $offset: Int!, $from: ISO8601DateTime, $till: ISO8601DateTime)
{bitcoin(network: $network) {
inputs(
date: {since: $from, till: $till},
inputAddress: {in: $address},
options: {desc: “block.height”, limit: $limit, offset: $offset})
{block {height,timestamp { time(format: “%Y-%m-%d %H:%M:%S”)}},
transaction { hash, index}, value,
inputAddress {annotation}},
outputs(date: {since: $from, till: $till},outputAddress: {is: $address}, options: {desc: “block.height”, limit: $limit, offset: $offset})
{block {timestamp {time(format: “%Y-%m-%d %H:%M:%S”)},height},transaction { hash, index }, value, outputAddress {annotation}}}} "
Paramter
{
“limit” : 100,
“offset” : 0,
“address” : [“1Kd6zLb9iAjcrgq8HzWnoWNVLYYWjp3swA”,“3LCGsSmfr24demGvriN4e3ft8wEcDuHFqh”],
“network” : “bitcoin”,
“dateFormat” : “%Y-%m”
}

Please check for me this bug

You are using the same address twice, that’s why it’s showing 1 result.

Please use different addresses.

For example check the following query.

{
  bitcoin {
    inputs(
      inputAddress: {in: ["18cBEMRxXHqzWWCxZNtU91F5sbUNKhL5PX",
        "bc1qe72gznxgmtfy2qqdg0q2zqywvf2w6ujjhj5rt2"]}) {
      value
      inputAddress{
        address
      }
      }
  }
}

You have written “is” on the 2nd half of the query where you were using “address”

please find the correct query