RaftFleet.query

You're seeing just the function query, go back to RaftFleet module for more information.
Link to this function

query(name, query_arg, timeout \\ 500, retry \\ 3, retry_interval \\ 1000, call_module \\ :gen_statem)

View Source

Specs

query(
  atom(),
  RaftedValue.Data.query_arg(),
  pos_integer(),
  non_neg_integer(),
  pos_integer(),
  module()
) :: {:ok, RaftedValue.Data.query_ret()} | {:error, :no_leader}

Executes a read-only query on the replicated value identified by name.

See command/6 for explanations of name, timeout, retry, retry_interval and call_module. See also RaftedValue.query/4.