FerricStore.Flow.QueryResult (ferricstore_sdk v0.6.2)

Copy Markdown View Source

Typed result returned by FerricStore.Flow.query/4.

Exactly one of records or count is populated. Pagination cursors are opaque and must only be reused with the same query and parameters.

Summary

Types

t()

@type t() :: %FerricStore.Flow.QueryResult{
  count: non_neg_integer() | nil,
  page: %{has_more: boolean(), cursor: binary() | nil} | nil,
  quality: map(),
  raw: map(),
  records: [map()] | nil,
  usage: map(),
  version: binary()
}