GraphQL\Tests\Type\SchemaValidatorTest::testAcceptsSchemaWithListOfInputTypeAsInputFieldArg PHP Méthode

testAcceptsSchemaWithListOfInputTypeAsInputFieldArg() public méthode

    public function testAcceptsSchemaWithListOfInputTypeAsInputFieldArg()
    {
        // accepts a schema with a list of input type as an input field arg
        $this->assertAcceptingFieldArgOfType(new ListOfType(new InputObjectType(['name' => 'SomeInputObject'])));
    }
SchemaValidatorTest