We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f3fd8c0 + 1fadd0f commit cb1a0a1Copy full SHA for cb1a0a1
src/server-extension/query/totalTokenEntities.ts
@@ -3,6 +3,7 @@ SELECT COUNT(DISTINCT ne.token_id) as total_count
3
FROM nft_entity as ne
4
JOIN token_entity ON ne.token_id = token_entity.id AND
5
token_entity.deleted = false
6
+JOIN collection_entity as col ON token_entity.collection_id = col.id
7
WHERE
8
($1::text IS NULL OR ne.current_owner = $1) AND
9
($6::text IS NULL OR ne.issuer = $6) AND
@@ -12,5 +13,5 @@ WHERE
12
13
($4::bigint IS NULL OR ne.price <= $4::bigint) AND
14
($7::text[] IS NULL OR ne.collection_id = ANY($7)) AND
15
($8::text IS NULL OR LOWER(ne.name) LIKE LOWER('%' || $8 || '%')) AND
- ($9::text IS NULL OR ne.kind = $9);
16
+ ($9::text IS NULL OR col.kind = $9);
17
`;
0 commit comments