PropertyPath
open class PropertyPath : QueryValue, @unchecked Sendable
Abstract base class for Property and DataPath.
Values of type PropertyPath are typically used in query construction.
See also
DataQuery.select, DataQuery.expand, DataQuery.orderBy.
-
Default initializer.
Declaration
Swift
override public init() -
Declaration
Swift
open func expand(_ items: PropertyPath...) -> ExpandablePathParameters
rest_itemsExpand items to be added to the expandable path.
Return Value
An expandable path starting with this property path.
-
Declaration
Swift
open func filter(test: QueryFilter) -> ExpandablePathParameters
testQuery filter to be added to the expandable path.
Return Value
An expandable path starting with this property path.
-
Declaration
Swift
open func select(_ items: PropertyPath...) -> ExpandablePathParameters
rest_itemsSelect items to be added to the expandable path.
Return Value
An expandable path starting with this property path.