graphql-php/src/Language/AST/BooleanValueNode.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;
}