GraphQL\Utils\TypeInfo::__construct PHP Method

__construct() public method

TypeInfo constructor.
public __construct ( Schema $schema )
$schema GraphQL\Schema
    public function __construct(Schema $schema)
    {
        $this->schema = $schema;
        $this->typeStack = [];
        $this->parentTypeStack = [];
        $this->inputTypeStack = [];
        $this->fieldDefStack = [];
    }