Last active
October 5, 2022 12:51
-
-
Save zoek1/6b363910f79abd3c92c9b4c706f84880 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"labels": $distinct(data.trade.token.name), | |
"datasets": [ | |
{ | |
"label": "Dataset 1", | |
"data": data.trade[token.name="tzBTC"].{ | |
"x": $number(tezQty), | |
"r": 10 + ($number(slippage) * 100), | |
"y": $number(price) | |
}, | |
"borderColor": "rgb(250, 178, 55)", | |
"backgroundColor": "rgba(250, 178, 55, 0.6)" | |
} | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": { | |
"display": true, | |
"text": "Custom Chart Title", | |
"padding": { | |
"top": 10, | |
"bottom": 30 | |
} | |
}, | |
"scales": { | |
"y": { | |
"display": true, | |
"text": "Price" | |
}, | |
"x": { | |
"display": true, | |
"text": "Tezos Quantity" | |
} | |
}, | |
"layout": { | |
"padding": 170 | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
query MyQuery { | |
trade(limit: 10) { | |
id | |
token { | |
name | |
} | |
tokenQty | |
tezQty | |
slippage | |
price | |
exchange { | |
name | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment