Packages
dynamo_datamapper
0.1.0
Library for manipulating data from dynamo db, this library its similar to odm from mongo, but to manipulate data easiest, based in Aws Dynamo library.
Current section
Files
Jump to
Current section
Files
dynamo_datamapper
README.md
README.md
# DataMapper
**TODO: Add description**
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `data_mapper` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:data_mapper, "~> 0.1.0"}
]
end
```
### Find
```elixir
EntityManager.find("bz_administrators", %{
username: "alexbilbie",
profile: "Developer",
twoFactorEnabled: true,
name: "Alex Bilbie"
})
```
### Find one
```elixir
EntityManager.find_one("bz_administrators", %{
username: "alexbilbie",
profile: "Developer",
twoFactorEnabled: true,
name: "Alex Bilbie"
})
```
### count
```elixir
EntityManager.count("bz_administrators", %{
username: "alexbilbie",
profile: "Developer",
twoFactorEnabled: true,
name: "Alex Bilbie"
})
```
Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
be found at [https://hexdocs.pm/data_mapper](https://hexdocs.pm/data_mapper).