Packages

object SearchPath

A specification of fields to be searched.

Depending on the context, one of the following methods may be used to get a representation of a SearchPath with the correct syntax: SearchPath.toBsonDocument, SearchPath.toBsonValue, FieldSearchPath.toValue.

Annotations
@Beta()
Since

4.7

See also

Path

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SearchPath
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def fieldPath(path: String): FieldSearchPath

    Returns a SearchPath for the given path.

    Returns a SearchPath for the given path.

    path

    The name of the field. Must not contain wildcard characters.

    returns

    The requested SearchPath.

    See also

    Dot notation

  2. def wildcardPath(wildcardPath: String): WildcardSearchPath

    Returns a SearchPath for the given wildcardPath.

    Returns a SearchPath for the given wildcardPath.

    wildcardPath

    The specification of the fields that contains wildcard ('*') characters. Must not contain '**'.

    returns

    The requested SearchPath.

    See also

    Dot notation