Skip to content

Instantly share code, notes, and snippets.

@rubenmarcus
Created September 9, 2022 14:52
Show Gist options
  • Save rubenmarcus/1ea704327c252f198eef7fc6d9eebecd to your computer and use it in GitHub Desktop.
Save rubenmarcus/1ea704327c252f198eef7fc6d9eebecd to your computer and use it in GitHub Desktop.
queries mb
query GetTokensSplitbyMetadataId($metadata_id: String!)
{ token: nft_tokens( where: {
metadata_id: { _eq: $metadata_id }
burned_timestamp: { _is_null: true } } limit: 100 ) {
id: token_id
ownerId: owner
splits
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment