BVariable

data class BVariable(val name: String, val defaultValue: Boolean?) : BTerm

A term that comes from @include/@skip or @defer directives and that needs to be matched against operation variables

Constructors

Link copied to clipboard
fun BVariable(name: String)
Link copied to clipboard
fun BVariable(name: String, defaultValue: Boolean?)

Functions

Link copied to clipboard
fun copy(name: String = this.name): BVariable

Properties

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