IrSelectionSet

@Serializable
data class IrSelectionSet(val name: String, val isRoot: Boolean, val selections: List<IrSelection>)

Constructors

Link copied to clipboard
constructor(name: String, isRoot: Boolean, selections: List<IrSelection>)

Properties

Link copied to clipboard

true if this is the root selection set for this operation/fragment definition

Link copied to clipboard

a name for this IrSelectionSet. This name is unique across all IrSelectionSet for a given operation/fragment definition

Link copied to clipboard