Cephalopod_models.App_Bsky_Unspecced_SearchActorsSkeleton
lexicon "app.bsky.unspecced.searchActorsSkeleton"
type main_params = {
q : string;
Search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended. For typeahead search, only simple term match is supported, not full syntax.
*)viewer : string option;
DID of the account making the request (not included for public/unauthenticated queries). Used to boost followed accounts in ranking. format: "Did"
*)typeahead : bool option;
If true, acts as fast/simple 'typeahead' query.
*)limit : int64 option;
default: 25 maximum: 100 minimum: 1
*)cursor : string option;
Optional pagination mechanism; may not necessarily allow scrolling through entire result set.
*)}
val pp_main_params :
Ppx_deriving_runtime.Format.formatter ->
main_params ->
Ppx_deriving_runtime.unit
val show_main_params : main_params -> Ppx_deriving_runtime.string
val make_main_params :
q:string ->
?viewer:string ->
?typeahead:bool ->
?limit:int64 ->
?cursor:string ->
unit ->
main_params
val main_params_of_value : main_params Cephalopod_dasl.Value.Util.conv
val main_params_to_value : main_params -> Cephalopod_dasl.Value.t
type main_output = {
cursor : string option;
hitsTotal : int64 option;
Count of search hits. Optional, may be rounded/truncated, and may not be possible to paginate through all hits.
*)actors : Types.app_bsky_unspecced_defs_skeletonsearchactor list;
}
val pp_main_output :
Ppx_deriving_runtime.Format.formatter ->
main_output ->
Ppx_deriving_runtime.unit
val show_main_output : main_output -> Ppx_deriving_runtime.string
val main_output_of_value : main_output Cephalopod_dasl.Value.Util.conv
val main_output_to_value : main_output -> Cephalopod_dasl.Value.t
val pp_main_error :
Ppx_deriving_runtime.Format.formatter ->
main_error ->
Ppx_deriving_runtime.unit
val show_main_error : main_error -> Ppx_deriving_runtime.string
val main : (main_params, main_output, main_error) Base.query
Backend Actors (profile) search, returns only skeleton.