BooleanValueNode.md 567 B

BooleanValueNode

A node that represents a boolean value — e.g. true.

Attributes

Data

Attribute Type Description
kind "booleanValueNode" The node discriminator.
boolean boolean The boolean value.

Children

This node has no children.

Functions

booleanValueNode(items)

Helper function that creates a BooleanValueNode object from a boolean.

const node = booleanValueNode(true);