for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* PostStatus.php
*/
namespace Examples\Blog\Schema;
use Youshido\GraphQL\Type\Object\AbstractEnumType;
class PostStatus extends AbstractEnumType
{
public function getValues()
return [
[
'value' => 0,
'name' => 'DRAFT',
],
'value' => 1,
'name' => 'PUBLISHED',
]
];
}