QueryResultList

public struct QueryResultList

Results of a view query

  • Number of rows skipped in the result set, as specified by the QueryParameters.skipRows used to execute the query

    Declaration

    Swift

    public var skippedRows: UInt = 0
  • Query results array

    Declaration

    Swift

    public var rows: [QueryResultRow] = []
  • True if the query parameters indicated documents should be returned with the result rows

    Declaration

    Swift

    public var includesDocuments: Bool = false
  • Populated in the event that running the query caused an error, otherwise nil.

    Declaration

    Swift

    public var error: Error?
  • Number of rows in the result set

    Declaration

    Swift

    public var count: Int