IrFragment

@Serializable
@SerialName(value = "fragment")
data class IrFragment(val typeCondition: String, val possibleTypes: List<String>, val condition: BooleanExpression<BVariable>, val selectionSetName: String?, val name: String?) : IrSelection

Constructors

Link copied to clipboard
constructor(typeCondition: String, possibleTypes: List<String>, condition: BooleanExpression<BVariable>, selectionSetName: String?, name: String?)

Properties

Link copied to clipboard
Link copied to clipboard
val name: String?

The name of the fragment for fragment spreads or null for inline fragments

Link copied to clipboard
Link copied to clipboard

The name of the IrSelectionSet that contains the IrSelection for this inline fragment or null for fragments spreads (because the IrSelectionSet is defined in the fragment

Link copied to clipboard