Hi @liveforeverx,
Thank you for the fantastic library and amazing implementation of Dlex.Node. I am working on developing a LMS prototype - my first attempt at using a Graph database. I had to dig into Dlex code to understand the implementation. I intend to add documentation and may be a sample repo for anybody else wanting to use the library. I have done the following:
defmodule Lms.Courses.Course do
use Dlex.Node
@derive {Phoenix.Param, key: :uid}
import Ecto.Changeset
schema "courses" do
field(:title, :string, index: ["term"])
field(:description, :string)
field(:duration_allowed, :integer)
...
how do I use title@en or other locales in this context?
any pointers to the pending items would be great help.
Best,
Gorav
Hi @liveforeverx,
Thank you for the fantastic library and amazing implementation of Dlex.Node. I am working on developing a LMS prototype - my first attempt at using a Graph database. I had to dig into Dlex code to understand the implementation. I intend to add documentation and may be a sample repo for anybody else wanting to use the library. I have done the following:
how do I use
title@enor other locales in this context?any pointers to the pending items would be great help.
Best,
Gorav