Skip to content

Commit cb1a0a1

Browse files
authored
Merge pull request #320 from kodadot/main
🐛 🔖 Stick v12
2 parents f3fd8c0 + 1fadd0f commit cb1a0a1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/server-extension/query/totalTokenEntities.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ SELECT COUNT(DISTINCT ne.token_id) as total_count
33
FROM nft_entity as ne
44
JOIN token_entity ON ne.token_id = token_entity.id AND
55
token_entity.deleted = false
6+
JOIN collection_entity as col ON token_entity.collection_id = col.id
67
WHERE
78
($1::text IS NULL OR ne.current_owner = $1) AND
89
($6::text IS NULL OR ne.issuer = $6) AND
@@ -12,5 +13,5 @@ WHERE
1213
($4::bigint IS NULL OR ne.price <= $4::bigint) AND
1314
($7::text[] IS NULL OR ne.collection_id = ANY($7)) AND
1415
($8::text IS NULL OR LOWER(ne.name) LIKE LOWER('%' || $8 || '%')) AND
15-
($9::text IS NULL OR ne.kind = $9);
16+
($9::text IS NULL OR col.kind = $9);
1617
`;

0 commit comments

Comments
 (0)