Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 570 Bytes

StringValueNode.md

File metadata and controls

26 lines (16 loc) · 570 Bytes

StringValueNode

A node that represents a string value — e.g. "Hello".

Attributes

Data

Attribute Type Description
kind "stringValueNode" The node discriminator.
string string The string value.

Children

This node has no children.

Functions

stringValueNode(string)

Helper function that creates a StringValueNode object from a string value.

const node = stringValueNode('Hello');