mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-22 21:06:05 +03:00
Added EXPERIMENTAL note for code related to type resolution strategies
This commit is contained in:
parent
b4e6630c1d
commit
2ddae2bf88
@ -400,6 +400,9 @@ class Server
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* EXPERIMENTAL!
|
||||||
|
* This method can be removed or changed in future versions without a prior notice.
|
||||||
|
*
|
||||||
* @return Resolution
|
* @return Resolution
|
||||||
*/
|
*/
|
||||||
public function getTypeResolutionStrategy()
|
public function getTypeResolutionStrategy()
|
||||||
@ -408,6 +411,9 @@ class Server
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* EXPERIMENTAL!
|
||||||
|
* This method can be removed or changed in future versions without a prior notice.
|
||||||
|
*
|
||||||
* @param Resolution $typeResolutionStrategy
|
* @param Resolution $typeResolutionStrategy
|
||||||
* @return Server
|
* @return Server
|
||||||
*/
|
*/
|
||||||
|
@ -11,6 +11,13 @@ use GraphQL\Type\Definition\UnionType;
|
|||||||
use GraphQL\Type\Definition\WrappingType;
|
use GraphQL\Type\Definition\WrappingType;
|
||||||
use GraphQL\Utils;
|
use GraphQL\Utils;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* EXPERIMENTAL!
|
||||||
|
* This class can be removed or changed in future versions without a prior notice.
|
||||||
|
*
|
||||||
|
* Class EagerResolution
|
||||||
|
* @package GraphQL\Type
|
||||||
|
*/
|
||||||
class EagerResolution implements Resolution
|
class EagerResolution implements Resolution
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
@ -7,6 +7,13 @@ use GraphQL\Type\Definition\ObjectType;
|
|||||||
use GraphQL\Type\Definition\Type;
|
use GraphQL\Type\Definition\Type;
|
||||||
use GraphQL\Utils;
|
use GraphQL\Utils;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* EXPERIMENTAL!
|
||||||
|
* This class can be removed or changed in future versions without a prior notice.
|
||||||
|
*
|
||||||
|
* Class LazyResolution
|
||||||
|
* @package GraphQL\Type
|
||||||
|
*/
|
||||||
class LazyResolution implements Resolution
|
class LazyResolution implements Resolution
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
@ -5,6 +5,13 @@ use GraphQL\Type\Definition\AbstractType;
|
|||||||
use GraphQL\Type\Definition\ObjectType;
|
use GraphQL\Type\Definition\ObjectType;
|
||||||
use GraphQL\Type\Definition\Type;
|
use 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
|
interface Resolution
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user