AssetQuery
public struct AssetQuery
Request Parameters to fetch selected number of Assets (filtering criteria).
-
Constructs an instance of the query
Declaration
Swift
public init(fields: String? = nil, filter: String? = nil, pageSize: Int = 100)
-
Retrieves selected fields of a large object or a collection of large objects. For example, to retrieve a few attributes from an asset with many attributes, indicate the selected attributes in the fields clause.
Declaration
Swift
public var fields: String?
-
Use Graph Expression Language (GEL) in the filter clause of a GET request to filter the data that appears in results.
Declaration
Swift
public var filter: String?
-
Defines the number of entities to be returned per page (default is 100). Maximum pageSize is 1000.
Declaration
Swift
public var pageSize: Int = 100