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

Link to this section Summary

Link to this section 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*"
@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(),
  sort: boolean(),
  type: field_type(),
  vec_dist: String.t()
}