Arke.Core.Query.Order (Arke v0.6.2)

Copy Markdown View Source

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

Summary

Types

t()

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