Your IP : 216.73.216.218


Current Path : /home/eolienneia/www/templates/yootheme/vendor/yootheme/graphql/lib/Type/
Upload File :
Current File : /home/eolienneia/www/templates/yootheme/vendor/yootheme/graphql/lib/Type/Resolution.php

<?php
namespace YOOtheme\GraphQL\Type;

use YOOtheme\GraphQL\Type\Definition\AbstractType;
use YOOtheme\GraphQL\Type\Definition\ObjectType;
use YOOtheme\GraphQL\Type\Definition\Type;

/**
 * EXPERIMENTAL!
 * This interface can be removed or changed in future versions without a prior notice.
 *
 * Interface Resolution
 * @package GraphQL\Type
 */
interface Resolution
{
    /**
     * Returns instance of type with given $name for GraphQL Schema
     *
     * @param string $name
     * @return Type
     */
    public function resolveType($name);

    /**
     * Returns instances of possible ObjectTypes for given InterfaceType or UnionType
     *
     * @param AbstractType $type
     * @return ObjectType[]
     */
    public function resolvePossibleTypes(AbstractType $type);
}