QueryResultRow

public class QueryResultRow

Represents a single row of data returned from a query

  • The ID of the document described by this view row. This is not necessarily the same as the document that caused this row to be added to the index.

    Declaration

    Swift

    public var documentId: String?
  • key

    Key of the Index row

    Declaration

    Swift

    public var key: Any
  • Value of the index row

    Declaration

    Swift

    public var value: Any?
  • The document that emitted this index row. May be nil when map/reduce queries are used.

    Declaration

    Swift

    public lazy var document: Document? = getDocument()