case class QueryResult(rows: Seq[QueryChunkRow], metaData: QueryMetaData) extends Product with Serializable
The results of a N1QL query.
- rows
all rows returned from the query
- metaData
any additional information related to the query
- Alphabetic
- By Inheritance
- QueryResult
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
QueryResult(rows: Seq[QueryChunkRow], metaData: QueryMetaData)
- rows
all rows returned from the query
- metaData
any additional information related to the query
Value Members
- val metaData: QueryMetaData
-
def
rowsAs[T](implicit deserializer: JsonDeserializer[T]): Try[Seq[T]]
Returns an
Iterator
of any returned rows.Returns an
Iterator
of any returned rows. All rows are buffered from the query service first.The rows can be converted into the user's desired type. This can be any type for which an implicit
JsonDeserializer[T]
can be found, and can includeJsonObject
, a case class, String, or one of a number of supported third-party JSON libraries; see these JSON docs for a full listThe return type is of
Iterator[Try[T]]
in case any row cannot be decoded. See rowsAsfor a more convenient interface that does not require handling individual row decode errors.