Skip to main content
Use post queries to build user feeds, community feeds, review queues, and media galleries. Query results are paginated live collections on the client SDKs.

Parameters

Common Filters

Data Type Filters

Query a Community Feed

Query a community feed with the filters your UI needs, then keep the returned live collection or stream subscription while the feed is visible.

Android Cache Invalidation

Android exposes invalidateCache(true) on post query builders. Use it when a screen should skip stale paging cache on entry, such as after pull-to-refresh.

Time Boundaries

untilAt is available on TypeScript, iOS, and Android query surfaces. It is a time boundary for pagination. For newest-first sorting, older posts beyond the boundary are excluded; for oldest-first sorting, newer posts beyond the boundary are excluded.

Notes

  • For media galleries, set a data type filter and enable mixed media matching where the SDK supports it.
  • For moderation review queues, use review/feed status filters and apply your app’s permission checks before showing restricted states.
  • Always dispose live collection subscriptions, notification tokens, or stream subscriptions when the screen is destroyed.

Get Posts

Retrieve one known post or a known set of post IDs.

Viewing Content

Render returned post content by type.

Post Review

Review approval and declined-post flows.