QueryResponse
public struct QueryResponse
A structure to hold a response from a query operation
-
A list of records matching the provided query. If the
includeData
flag was not set in the query, these records will contain emptyRecordData
values.Declaration
Swift
public let records: [Record]
-
An identifier for the final result of the query. Use this value in a subsequent query by setting the
after
property of aQueryParams
object.See also
next(after:)
for a convenient way to query for the next result set.Declaration
Swift
public let last: Double