Skip to content

Commit 308fab4

Browse files
committed
🔥 hide burned nfts from /gallery
1 parent 825c474 commit 308fab4

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

‎queries/nftListWithSearch.graphql

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
#import "./nft.graphql"
22

3-
query nftListWithSearch($first: Int!, $offset: Int, $denyList: [String!], $search: [NFTEntityFilter!], $orderBy: NftEntitiesOrderBy = BLOCK_NUMBER_DESC) {
3+
query nftListWithSearch(
4+
$first: Int!
5+
$offset: Int
6+
$denyList: [String!]
7+
$search: [NFTEntityFilter!]
8+
$orderBy: NftEntitiesOrderBy = BLOCK_NUMBER_DESC
9+
) {
410
nFTEntities(
511
orderBy: [$orderBy, BLOCK_NUMBER_DESC]
612
first: $first
713
offset: $offset
814
filter: {
15+
burned: { distinctFrom: true }
916
name: { notLike: "%Kanaria%" }
1017
issuer: { notIn: $denyList }
1118
and: $search

0 commit comments

Comments
 (0)