as_nested_set
as_nested_set copied to clipboard
a ecto based nested set implementation for database
Results
2
as_nested_set issues
Sort by
recently updated
recently updated
newest added
Hi, I'm having troubles with adding a record as a child in tests: ```elixir defmodule SomeApp.Api.Node do use Ecto.Schema use AsNestedSet, scope: [:emotion_id] end root_node = %Node{emotion_id: emotion.id, name: "root"}...
Allow passing in Ecto queries to the functions for filtering children, descendants, self_and_descendants & self_and_siblings. - added versions of the above functions of arity 2 that take a query as...