searchPostsV2 method
Future<XRPCResponse<FeedSearchPostsV2Output> >
searchPostsV2({
- String? cursor,
- int? limit,
- String? query,
- FeedSearchPostsV2Sort? sort,
- List<
String> ? authors, - List<
String> ? mentions, - List<
String> ? domains, - List<
String> ? urls, - List<
AtUri> ? embeddedAtUris, - List<
String> ? hashtags, - List<
String> ? excludeAuthors, - List<
String> ? excludeMentions, - List<
String> ? excludeDomains, - List<
String> ? excludeUrls, - List<
AtUri> ? excludeEmbeddedAtUris, - List<
String> ? excludeHashtags, - String? since,
- String? until,
- bool? allTime,
- List<
String> ? languages, - List<
String> ? excludeLanguages, - bool? hasMedia,
- bool? hasVideo,
- AtUri? replyParentUri,
- AtUri? threadRootUri,
- bool? excludeReplies,
- bool? repliesOnly,
- bool? following,
- FeedSearchPostsV2QueryLanguage? queryLanguage,
- String? $service,
- Map<
String, String> ? $headers, - Map<
String, String> ? $unknown,
Find posts matching a search query or filters, returning search hits for matching post records.
Implementation
Future<XRPCResponse<FeedSearchPostsV2Output>> searchPostsV2({
String? cursor,
int? limit,
String? query,
FeedSearchPostsV2Sort? sort,
List<String>? authors,
List<String>? mentions,
List<String>? domains,
List<String>? urls,
List<AtUri>? embeddedAtUris,
List<String>? hashtags,
List<String>? excludeAuthors,
List<String>? excludeMentions,
List<String>? excludeDomains,
List<String>? excludeUrls,
List<AtUri>? excludeEmbeddedAtUris,
List<String>? excludeHashtags,
String? since,
String? until,
bool? allTime,
List<String>? languages,
List<String>? excludeLanguages,
bool? hasMedia,
bool? hasVideo,
AtUri? replyParentUri,
AtUri? threadRootUri,
bool? excludeReplies,
bool? repliesOnly,
bool? following,
FeedSearchPostsV2QueryLanguage? queryLanguage,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyFeedSearchPostsV2(
cursor: cursor,
limit: limit,
query: query,
sort: sort,
authors: authors,
mentions: mentions,
domains: domains,
urls: urls,
embeddedAtUris: embeddedAtUris,
hashtags: hashtags,
excludeAuthors: excludeAuthors,
excludeMentions: excludeMentions,
excludeDomains: excludeDomains,
excludeUrls: excludeUrls,
excludeEmbeddedAtUris: excludeEmbeddedAtUris,
excludeHashtags: excludeHashtags,
since: since,
until: until,
allTime: allTime,
languages: languages,
excludeLanguages: excludeLanguages,
hasMedia: hasMedia,
hasVideo: hasVideo,
replyParentUri: replyParentUri,
threadRootUri: threadRootUri,
excludeReplies: excludeReplies,
repliesOnly: repliesOnly,
following: following,
queryLanguage: queryLanguage,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);