View Source Arke.Core.Query.Order (Arke v0.4.0)

Base struct Order:

  • parameter => %Arke.Core.Parameter.ParameterType => refer to Arke.Core.Parameter
  • direction => "child" | "parent" => the direction the query will use to search

  • path => [Arke.Core.Parameter.ParameterType] => the path of the parameter

It is used to define the return order of a Query

Link to this section Summary

Link to this section Types

@type t() :: %Arke.Core.Query.Order{
  direction: term(),
  parameter: term(),
  path: term()
}