Package com.faunadb.client.query
Class Language.Path
- java.lang.Object
-
- com.faunadb.client.query.Language.Path
-
- Enclosing class:
- Language
public static final class Language.Path extends Object
Builder for path selectors. This builder must be constructed using either theat(String...)
orat(int...)
functions.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Language.Path
at(int... others)
Narrow to a specific element index in an array.Language.Path
at(String... others)
Narrow to a specific path in a object key.
-
-
-
Method Detail
-
at
public Language.Path at(String... others)
Narrow to a specific path in a object key.- Parameters:
others
- path selectors- Returns:
- a new narrowed path
-
at
public Language.Path at(int... others)
Narrow to a specific element index in an array.- Parameters:
others
- path selectors- Returns:
- a new narrowed path
-
-