QueryByKeyRange

public struct QueryByKeyRange: QueryParameters

Query parameter structure to use when querying a range of keys.

  • Declaration

    Swift

    public var monitorWithNotification: Notification.Name?
  • Declaration

    Swift

    public var sortOrder: QuerySortOrder = .ascending
  • Declaration

    Swift

    public var limitRows: UInt = 0
  • Declaration

    Swift

    public var includeDocuments: Bool = false
  • Declaration

    Swift

    public var skipRows: UInt = 0
  • The first key in the view index to return in the result set. If nil, then the result set will start with the start of the index.

    Declaration

    Swift

    public var startKey: Any?
  • The last key in the view index to return in the result set. If nil, then the result set will end with the end of the index.

    Declaration

    Swift

    public var endKey: Any?
  • Initializes a QueryByKeyRange structure with default options

    Declaration

    Swift

    public init()