silverstripe-cms/code/GraphQL/Resolver.php
2024-08-19 09:37:03 +12:00

26 lines
583 B
PHP

<?php
namespace SilverStripe\CMS\GraphQL;
use SilverStripe\CMS\Model\SiteTree;
use SilverStripe\Dev\Deprecation;
/**
* @deprecated 5.3.0 Will be moved to the silverstripe/graphql module
*/
class Resolver
{
public function __construct()
{
Deprecation::withNoReplacement(function () {
Deprecation::notice('5.3.0', 'Will be moved to the silverstripe/graphql module', Deprecation::SCOPE_CLASS);
});
}
public static function resolveGetPageByLink($obj, array $args = [])
{
return SiteTree::get_by_link($args['link']);
}
}