···1515import {findAllPostsInQueryData as findAllPostsInQuoteQueryData} from '#/state/queries/post-quotes'
1616import {findAllPostsInQueryData as findAllPostsInSearchQueryData} from '#/state/queries/search-posts'
1717import {findAllPostsInQueryData as findAllPostsInThreadV2QueryData} from '#/state/queries/usePostThread/queryCache'
1818+import {findAllPostsInTopicQueryData} from '#/screens/Topic'
1819import {castAsShadow, type Shadow} from './types'
1920export type {Shadow} from './types'
2021···192193 yield post
193194 }
194195 for (let post of findAllPostsInBookmarksQueryData(queryClient, uri)) {
196196+ yield post
197197+ }
198198+ for (let post of findAllPostsInTopicQueryData(queryClient, uri)) {
195199 yield post
196200 }
197201}