1
0
mirror of https://github.com/retailcrm/graphql-php.git synced 2025-03-13 00:06:07 +03:00
2017-07-10 19:53:46 +07:00

29 lines
394 B
PHP

<?php
namespace GraphQL\Examples\Blog;
use GraphQL\Examples\Blog\Data\User;
/**
* Class AppContext
* Instance available in all GraphQL resolvers as 3rd argument
*
* @package GraphQL\Examples\Blog
*/
class AppContext
{
/**
* @var string
*/
public $rootUrl;
/**
* @var User
*/
public $viewer;
/**
* @var \mixed
*/
public $request;
}