ExMagicEden.MongoQuery (ex_magic_eden v0.0.5)

Link to this section Summary

Link to this section Types

@type opt() ::
  {:match, map()}
  | {:sort, map()}
  | {:skip, non_neg_integer()}
  | {:limit, pos_integer()}
@type t() :: %ExMagicEden.MongoQuery{
  limit: term(),
  match: term(),
  skip: term(),
  sort: term()
}

Link to this section Functions

@spec new([opt()]) :: t()
Link to this function

to_string(mongo_query)

@spec to_string(t()) :: String.t()