View Source ExTypesense.Collection.Field (ExTypesense v0.6.0)

Summary

Types

Link to this type

field_type()

View Source (since 0.1.0)
@type field_type() ::
  :string
  | :"string[]"
  | :int32
  | :"int32[]"
  | :int64
  | :"int64[]"
  | :float
  | :"float[]"
  | :bool
  | :"bool[]"
  | :geopoint
  | :"geopoint[]"
  | :object
  | :"object[]"
  | :"string*"
  | :image
  | :auto
@type t() :: %ExTypesense.Collection.Field{
  facet: boolean(),
  index: boolean(),
  infix: boolean(),
  locale: String.t(),
  name: String.t(),
  nested: boolean(),
  nested_array: integer(),
  num_dim: integer(),
  optional: boolean(),
  range_index: boolean(),
  reference: String.t(),
  sort: boolean(),
  stem: boolean(),
  store: boolean(),
  type: field_type(),
  vec_dist: String.t()
}