QueryParameters

public protocol QueryParameters

Protocol for common Query parameters

  • Sort order to use in this query

    Declaration

    Swift

    var sortOrder: QuerySortOrder
  • Maximum number of rows to return in this query, used with skipRows to perform paging of result sets.

    Declaration

    Swift

    var limitRows: UInt
  • Query results should include entire document. Caution: returning documents impacts performance of the query.

    Declaration

    Swift

    var includeDocuments: Bool
  • Number of rows to skip in return list, used with limitRows to perform paging of result sets.

    Declaration

    Swift

    var skipRows: UInt
  • When set, the query will continued to be monitored in the background. This notification will be fired when the result data changes. The notification userInfo dictionary will contain an element, queryResults, where the value is the updated QueryResultsList

    Declaration

    Swift

    var monitorWithNotification: Notification.Name?