A node that represents the concrete value of a map entry. For example, the map { total: 42 }
has only one entry such that its key is a "total"
string and its value is a 42
number.
Attribute | Type | Description |
---|---|---|
kind |
"mapEntryValueNode" |
The node discriminator. |
Attribute | Type | Description |
---|---|---|
key |
ValueNode |
The key of the entry. |
value |
ValueNode |
The value of the entry. |
Helper function that creates a MapEntryValueNode
object from two ValueNode
objects. The first one represents the key of the entry, and the second one represents the value of the entry.
const node = mapEntryValueNode(stringValueNode('total'), numberValueNode(42));