for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Digia\GraphQL\Language\AST\Node;
use Digia\GraphQL\Language\AST\NodeKindEnum;
class DirectiveNode extends AbstractNode implements NodeInterface
{
use NameTrait;
use ArgumentsTrait;
/**
* @var string
*/
protected $kind = NodeKindEnum::DIRECTIVE;
}