for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace GraphQL\Doctrine\Annotation;
use Doctrine\Common\Annotations\Annotation\Attribute;
use Doctrine\Common\Annotations\Annotation\Attributes;
/**
* Annotation used to override values for an input field in GraphQL.
*
* All values are optional and should only be used to override
* what is declared by the original method.
* @Annotation
* @Target({"METHOD"})
* @Attributes({
* @Attribute("name", required=false, type="string"),
* @Attribute("type", required=false, type="string"),
* @Attribute("description", required=false, type="string"),
* @Attribute("defaultValue", required=false, type="mixed"),
* })
*/
class Input extends AbstractAnnotation
{
}