1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
defmodule Silmataivas.Locations do
@moduledoc """
The Locations context.
"""
import Ecto.Query, warn: false
alias Silmataivas.Repo
alias Silmataivas.Locations.Location
@doc """
Returns the list of locations.
## Examples
iex> list_locations()
[%Location{}, ...]
"""
def list_locations do
Repo.all(Location)
end
@doc """
Gets a single location.
Raises `Ecto.NoResultsError` if the Location does not exist.
## Examples
iex> get_location!(123)
%Location{}
iex> get_location!(456)
** (Ecto.NoResultsError)
"""
def get_location!(id), do: Repo.get!(Location, id)
@doc """
Creates a location.
## Examples
iex> create_location(%{field: value})
{:ok, %Location{}}
iex> create_location(%{field: bad_value})
{:error, %Ecto.Changeset{}}
"""
def create_location(attrs \\ %{}) do
%Location{}
|> Location.changeset(attrs)
|> Repo.insert()
end
@doc """
Updates a location.
## Examples
iex> update_location(location, %{field: new_value})
{:ok, %Location{}}
iex> update_location(location, %{field: bad_value})
{:error, %Ecto.Changeset{}}
"""
def update_location(%Location{} = location, attrs) do
location
|> Location.changeset(attrs)
|> Repo.update()
end
@doc """
Deletes a location.
## Examples
iex> delete_location(location)
{:ok, %Location{}}
iex> delete_location(location)
{:error, %Ecto.Changeset{}}
"""
def delete_location(%Location{} = location) do
Repo.delete(location)
end
@doc """
Returns an `%Ecto.Changeset{}` for tracking location changes.
## Examples
iex> change_location(location)
%Ecto.Changeset{data: %Location{}}
"""
def change_location(%Location{} = location, attrs \\ %{}) do
Location.changeset(location, attrs)
end
end
|