Sam Burba
Sam Burba
Fixes #365 The schema actually gets the correct types, it's just the GraphQL facade that doesn't load them correctly. Which means GraphQL::type() doesn't work for types specified in the types...
If you load a schema like this: ```php $schema = GraphQL::schema([ 'query' => [ 'examplesCustom' => ExamplesQuery::class ], 'mutation' => [ 'updateExampleCustom' => UpdateExampleMutation::class ], 'types' => [ Type1::class, Type2::class...
Is there interest in the library in supporting annotations tied to method parameters? I think there are several cases where annotating method parameters would be useful for library developers. Below...