-
Discord user IDNo response Describe your question in detail.I am trying to find a query to fetch all the NFTs from a Collection. https://cloud.hasura.io/public/graphiql?endpoint=https://api.testnet.aptoslabs.com/v1/graphql What error, if any, are you getting?No response What have you tried or looked at? Or how can we reproduce the error?No response Which operating system are you using?macOS Which SDK or tool are you using? (if any)Indexer API Describe your environment or tooling in detailNo response |
Beta Was this translation helpful? Give feedback.
Answered by
aeither
Sep 16, 2024
Replies: 1 comment
-
found it query GetCollectionNfts($name: String) { |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
aeither
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
found it
query GetCollectionNfts($name: String) {
current_token_datas_v2(
where: {current_collection: {collection_name: {_eq: $name}}}
) {
token_name
}
}