View Source Lightning.Collections.Collection (Lightning v2.10.15)

Collection referenced by name associated to a project.

Summary

Types

@type t() :: %Lightning.Collections.Collection{
  __meta__: term(),
  byte_size_sum: integer(),
  delete: term(),
  id: Ecto.UUID.t(),
  inserted_at: NaiveDateTime.t(),
  items: term(),
  name: String.t(),
  project: term(),
  project_id: Ecto.UUID.t(),
  raw_name: term(),
  updated_at: NaiveDateTime.t()
}

Functions

Link to this function

form_changeset(collection, attrs)

View Source