QueryResultRow

public struct QueryResultRow

Represents a single row of data returned from a query

  • document id of the document associated with this query row. May be nil when map/reduce queries are used.

    Declaration

    Swift

    public var documentId: String?
  • key

    Key of the view

    Declaration

    Swift

    public var key: Any
  • Value associated with the view key

    Declaration

    Swift

    public var value: Any?
  • The related documment if QueryParameters.includeDocuments was set for this query.

    Declaration

    Swift

    public var document: [String:Any]?