-
The child expand item to be applied.
Declaration
Swift
open var expandItem: ExpandTransform?
-
The filter transform to be applied for the expand transformation.
Declaration
Swift
open var filter: FilterTransform?
-
The property path of the navigation property to expand.
Declaration
Swift
open var propertyPath: PropertyPath
-
Creates an expand transformation item with a child expand transformation item.
Declaration
Swift
open class func withExpand(_ propertyPath: PropertyPath, expandItem: ExpandTransform) -> ExpandTransform
Parameters
propertyPath
The property path of the expand transformation item to be created.
expandItem
The child expand transformation item of the expand transformation item to be created.
Return Value
The expand transformation item.
-
Creates an expand transformation item with a filter transformation.
Declaration
Swift
open class func withFilter(_ propertyPath: PropertyPath, filter: FilterTransform) -> ExpandTransform
Parameters
propertyPath
The property path of the expand transformation item to be created.
filter
The filter transform of the expand transformation item to be created.
Return Value
The expand transformation item.