We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Switch to new filter APIs using cursor mode. Here are the contracts:
type NsfwFilter = variant { IncludeNsfw; OnlyNsfw; ExcludeNsfw }; get_top_posts_aggregated_from_canisters_on_this_network_for_home_feed_cursor : ( nat64, nat64, opt bool, opt PostStatus, opt NsfwFilter, ) -> (Result) query; get_top_posts_aggregated_from_canisters_on_this_network_for_hot_or_not_feed_cursor : ( nat64, nat64, opt bool, opt PostStatus, opt NsfwFilter, ) -> (Result) query;
Can use either is_nsfw or NsfwFilter (values as enum above) . Preferably use NsfwFilter as is_nsfw will be deprecated later.
The text was updated successfully, but these errors were encountered:
fixed by #116
Sorry, something went wrong.
No branches or pull requests
Switch to new filter APIs using cursor mode. Here are the contracts:
Can use either is_nsfw or NsfwFilter (values as enum above) . Preferably use NsfwFilter as is_nsfw will be deprecated later.
The text was updated successfully, but these errors were encountered: