Qdrant.Api.Http.Request (Qdrant v0.1.15)

Copy Markdown View Source

Shared path and query encoding helpers used by the REST endpoint modules.

iex> Qdrant.Api.Http.Request.segment("team/a?")
"team%2Fa%3F"

iex> Qdrant.Api.Http.Request.query("/points", wait: false, timeout: nil)
"/points?wait=false"

Summary

Functions

query(path, params)

@spec query(String.t(), keyword() | map()) :: String.t()

request(client, method, path, opts \\ [])

segment(value)

@spec segment(term()) :: String.t()