-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ERC 1155 Token Collection List filtering data is abnormal. #1086
Comments
What's the filter key, I've tried with The issue in the screenshot needs help from @Naupio, 4 records with And I've two pieces of advice for this issue.
|
Ok, some data has been updated and uploaded.#1086 (comment) |
{"query":"\n query ($limit: Int, $name: String, $before: String, $after: String) {\n erc1155_udts(input: { limit: $limit, fuzzy_name: $name, before: $before, after: $after }) {\n entries {\n id\n name\n symbol\n icon\n account {\n eth_address\n }\n holders_count\n minted_count\n token_type_count\n }\n metadata {\n total_count\n after\n before\n }\n }\n }\n","variables":{"before":"g3QAAAABZAACaWRiAABZLA==","after":null,"name":"Events%","limit":30}} @Keith-CY |
decode cursor result
|
@Naupio Filter on non-first and non-last pages,the same problem applies to the On the |
https://godwoken-explorer-6z22m4y4m-magickbase.vercel.app/multi-token-collections?page_size=50&name=Events&before=g3QAAAABZAACaWRiAADPjQ%3D%3D
{"query":"\n query ($limit: Int, $name: String, $before: String, $after: String) {\n erc1155_udts(input: { limit: $limit, fuzzy_name: $name, before: $before, after: $after }) {\n entries {\n id\n name\n symbol\n icon\n account {\n eth_address\n }\n holders_count\n minted_count\n }\n metadata {\n total_count\n after\n before\n }\n }\n }\n","variables":{"before":null,"after":"g3QAAAABZAACaWRiAAC_hQ==","name":"Events%","limit":50}}
https://godwoken-explorer-6z22m4y4m-magickbase.vercel.app/multi-token-collections?page_size=50&name=Events&after=g3QAAAABZAACaWRiAAC5jA%3D%3D
{"query":"\n query ($limit: Int, $name: String, $before: String, $after: String) {\n erc1155_udts(input: { limit: $limit, fuzzy_name: $name, before: $before, after: $after }) {\n entries {\n id\n name\n symbol\n icon\n account {\n eth_address\n }\n holders_count\n minted_count\n }\n metadata {\n total_count\n after\n before\n }\n }\n }\n","variables":{"before":"g3QAAAABZAACaWRiAADPjQ==","after":null,"name":"Events%","limit":50}}
Now, 4 pieces of data are displayed in pagination, which can actually be displayed on one page.
The text was updated successfully, but these errors were encountered: