Skip to content

peburrows/diplomat

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
lib
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Build Status

Diplomat

Diplomat is an Elixir library for interacting with Google's Cloud Datastore.

Installation

  1. Add datastore to your list of dependencies in mix.exs:
def deps do
  [{:diplomat, "~> 0.2"}]
end
  1. Make sure you've configured Goth with your credentials:
config :goth,
  json: {:system, "GCP_CREDENTIALS_JSON"}

Usage

Insert an Entity:

Diplomat.Entity.new(
  %{"name" => "My awesome book", "author" => "Phil Burrows"},
  "Book",
  "my-unique-book-id"
) |> Diplomat.Entity.insert

Find an Entity via a GQL Query:

Diplomat.Query.new(
  "select * from `Book` where name = @name",
  %{name: "20,000 Leagues Under The Sea"}
) |> Diplomat.Query.execute

About

Elixir library for interacting with Google's Cloud Datastore

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages