ExTypesense.Debug (ExTypesense v2.0.0)
View SourceProvides API endpoint related to debug
Summary
Functions
@spec debug() :: {:ok, map()} | :error
Print debugging information
Same as debug/0
Options
conn
: The custom connection map or struct you passed
Examples
iex> conn = %{api_key: xyz, host: ...}
iex> ExTypesense.debug(conn: conn)
iex> conn = OpenApiTypesense.Connection.new()
iex> ExTypesense.debug(conn: conn)
iex> opts = [conn: conn]
iex> ExTypesense.debug(opts)