mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-02-20 14:23:13 +03:00
14 lines
194 B
PHP
14 lines
194 B
PHP
<?php
|
|
namespace GraphQL\Language\AST;
|
|
|
|
|
|
class BooleanValueNode extends Node implements ValueNode
|
|
{
|
|
public $kind = NodeKind::BOOLEAN;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $value;
|
|
}
|