Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit 3d342f3

Browse files
authored
Merge pull request #1435 from roiLeo/fix/collection/stats
🔥 hide burned nft from collection stats
2 parents 72c2901 + 4101e97 commit 3d342f3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

queries/nftListByCollection.graphql

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
query nftListByCollection($id: String!) {
2-
nFTEntities(filter: { collectionId: { equalTo: $id } }) {
2+
nFTEntities(
3+
filter: {
4+
collectionId: { equalTo: $id }
5+
burned: { distinctFrom: true }
6+
}
7+
) {
38
nodes {
49
id
510
currentOwner

0 commit comments

Comments
 (0)