Typesense.Collectionmodule Response : sig ... endval get_collections :
?get_collections_parameters:string ->
t ->
unit ->
Response.tList all collections
Returns a summary of all your collections. The collections are returned sorted by creation date, with the most recent collections appearing first.
val create_collection : body:CollectionSchema.T.t -> t -> unit -> Response.tCreate a new collection
When a collection is created, we give it a name and describe the fields that will be indexed from the documents added to the collection.
val get_collection : collection_name:string -> t -> unit -> Response.tRetrieve a single collection
Retrieve the details of a collection, given its name.
val delete_collection : collection_name:string -> t -> unit -> Response.tDelete a collection
Permanently drops a collection. This action cannot be undone. For large collections, this might have an impact on read latencies.