mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
26 lines
583 B
PHP
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']);
|
|
}
|
|
}
|