View Source Dagex.Operations.RemoveEdge (dagex v3.0.1)

Represents a database operation to remove an edge between two nodes.

See Dagex.remove_edge/2

Link to this section Summary

Link to this section Types

Specs

result() :: {:edge_removed, {parent :: struct(), child :: struct()}}

Specs

t() :: %Dagex.Operations.RemoveEdge{
  child: struct(),
  child_id: String.t(),
  node_type: String.t(),
  parent: struct(),
  parent_id: String.t()
}