-
The search query used to create these results.
Declaration
Swift
var queryString: String
-
The posts in the forum.
Declaration
Swift
var posts: [PostData]
-
Pagination into the results set. Because
/forum/post/search
filters the result set after the db query,posts.count
could be less thanpaginator.limit
even if we’re not at the end of the results. To get the next ‘page’ of results, be sure to addlimit
tostart
; don’t addposts.count
.Declaration
Swift
var paginator: Paginator