Skip to content

Commit ec8a916

Browse files
committed
🔥 hide burned nfts from spotlight & series-insight
1 parent 308fab4 commit ec8a916

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

‎queries/collectionIssuerList.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ query collectionIssuerList($denyList: [String!]) {
22
collectionEntities(filter: { issuer: { notIn: $denyList } }) {
33
nodes {
44
issuer
5-
nfts {
5+
nfts(filter: { burned: { distinctFrom: true } }) {
66
totalCount
77
nodes {
88
issuer

‎queries/collectionSeriesList.graphql

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
#import "./collection.graphql"
22

33
query collectionIssuerList($denyList: [String!]) {
4-
collectionEntities(
5-
filter: {
6-
issuer: { notIn: $denyList },
7-
}
8-
) {
4+
collectionEntities(filter: { issuer: { notIn: $denyList } }) {
95
nodes {
106
issuer
11-
nfts {
7+
nfts(filter: { burned: { distinctFrom: true } }) {
128
totalCount
139
nodes {
1410
issuer

0 commit comments

Comments
 (0)