for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is a part of GraphQL project.
*
* @author Alexandr Viniychuk <[email protected]>
* created: 2:00 PM 5/15/16
*/
namespace Youshido\Tests\DataProvider;
use Youshido\GraphQL\Type\Object\AbstractMutationObjectType;
use Youshido\GraphQL\Type\Scalar\IntType;
use Youshido\GraphQL\Type\Scalar\StringType;
class TestMutationObjectType extends AbstractMutationObjectType
{
public function getOutputType()
return new StringType();
}
public function build($config)
$this->addArgument('increment', new IntType());