Hello
I am trying to download tx amount, when usng this query and downloading results as csv i get 1,000,000 abbreviated to 1M and 1,000,000,000 abbreviated into 1G, is there a way to get the exact number without abbreviation?
query ($network: EthereumNetwork!,
$address: String!,
$limit: Int!,
$offset: Int!
$from: ISO8601DateTime,
$till: ISO8601DateTime){
ethereum(network: $network){
transfers(options:{desc: "block.timestamp.time" asc: "currency.symbol" limit: $limit, offset: $offset},
date: {since: $from till: $till },
amount: {gt: 0},
sender: {is: $address}) {
block {
timestamp {
time (format: "%Y-%m-%d %H:%M:%S")
}
height
}
address: receiver {
address
annotation
}
currency {
address
symbol
}
amount
transaction {
hash
}
external
}
}
}