Get Profile Hashrate History
Retrieves the hashrate history of all sub-accounts of a profile
Example
query getProfileHashrateHistory {
getProfileHashrateHistory(mpn: BTC, first: 10) {
edges {
node {
dataPoints
hashrate
time
}
}
}
}
Response
{
"data": {
"getProfileHashrateHistory": {
"edges": [
{
"node": {
"dataPoints": "",
"hashrate": "",
"time": "2023-12-01T08:00:00+00:00"
}
},
{
"node": {
"dataPoints": "",
"hashrate": "",
"time": "2023-12-01T07:00:00+00:00"
}
}
]
}
}
}
Arguments
mpn
(MiningProfileName!)
enum MiningProfileName {
ARRR
BTC
DASH
DCR
KMD
LBC
SC
SCP
ZEC
ZEN
EQUI
TBTC
ETH
TETH
}
-
first
(Int
) Only read the firstn
values of the set. -
last
(Int
) Only read the lastn
values of the set. -
offset
(Int
) Skip the firstn
values from ourafter
cursor, an alternative to cursor based pagination. May not be used withlast
. -
before
(Cursor
) Read all values in the set before (above) this cursor. -
after
(Cursor
) Read all values in the set after (below) this cursor.