ExTypesense.Debug (ExTypesense v2.0.1)

View Source

Provides API endpoint related to debug

Summary

Functions

Print debugging information

Functions

debug()

(since 1.0.0)
@spec debug() :: {:ok, map()} | :error

Print debugging information

debug(opts)

(since 1.0.0)
@spec debug(keyword()) :: {:ok, map()} | :error

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)