Last active
July 23, 2021 14:45
-
-
Save ries9112/be06574541953bc28115ccf942b21327 to your computer and use it in GitHub Desktop.
Query to find CryptoVoxels Archives. Copy/paste into https://arweave.net/graphql
This file contains 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 { | |
transactions( | |
tags: [ | |
{ | |
name: "Content-Type", | |
values: ["application/zip"] | |
}, | |
{ | |
name: "Tag-Name", | |
values: ["CryptoVoxelsArchive"] | |
} | |
] | |
) { | |
edges { | |
node { | |
id | |
block{ | |
timestamp | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment