QueryRow
public struct QueryRow
A row of data generated by a Query.
-
The ID of the document that produced this row.
Declaration
Swift
public var documentID: String -
The sequence number of the document revision that produced this row.
Declaration
Swift
public var sequence: UInt64 -
The document that produced this row.
Declaration
Swift
public var document: Document -
The result value at the given index (if the query has a
returning
specification.)Declaration
Swift
public func value(at index: Int) -> Any?
QueryRow Struct Reference