Last active
January 20, 2019 10:47
-
-
Save okwme/87919dd0183464cc8ae884b3fddd8816 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
query { | |
allCups( | |
first: 10, | |
condition: { deleted: false }, | |
orderBy: RATIO_ASC | |
filter: { | |
lad: { equalTo: "0x_address_goes_here" } | |
}) { | |
totalCount | |
pageInfo { | |
hasNextPage | |
hasPreviousPage | |
endCursor | |
} | |
nodes { | |
id | |
lad | |
art | |
ink | |
ratio | |
actions(first: 5) { | |
nodes { | |
act | |
time | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment