Selecto.Advanced.ValuesClause.Spec (Selecto v0.3.12)

Specification for a VALUES clause operation.

Link to this section Summary

Link to this section Types

Link to this type

column_spec()

@type column_spec() :: String.t() | atom()
@type data_row() :: [term()] | map()
@type t() :: %Selecto.Advanced.ValuesClause.Spec{
  alias: String.t(),
  column_types: map(),
  columns: [column_spec()],
  data: [data_row()],
  data_type: :list_of_lists | :list_of_maps,
  id: String.t(),
  validated: boolean()
}