Astra

An elixir plugin for interacting with DataStax Astra or any stargate.io fronted storage!

Currently supports

GraphQL/Schema should be available soon.

To use, setup an Astra instance at https://astra.datastax.com.

Installation

The package can be installed by adding astra to your list of dependencies in mix.exs:

def deps do
[
{:astra, "~> 0.1.0"}
]
end

To connect to Astra add something like the following to your config.exs:

config :astra,
id: System.get_env("ASTRA_ID"),
region: System.get_env("ASTRA_REGION"),
username: System.get_env("ASTRA_USERNAME"),
password: System.get_env("ASTRA_PASSWORD")