In the newer version I had this introspection problem #1093
Replies: 1 comment 4 replies
-
The upgrades of graphql-laravel often also include updates to webonyx-graphql, especially when we bumped the major to 9 we brought in a big update of webonyx and with it many improvement and strictness; so "tl;dr" I wouldn't be surprised that you now find issues not seen before. That said, of course could be an issue in this library too 😅 Since you didn't provide much in terms of code to check, I may suggest a quick hack to use the webonyx built-in schema validator and see what it tells you. In $schema = $this->buildSchemaFromConfig($schemaConfig); add dd($schema->validate()); If it reports something, I suggest to look into that first. If not … I would need more details to help. ps: I was meant to add a console command to easily check this but never got around |
Beta Was this translation helpful? Give feedback.
-
error:
Introspection must provide input type for arguments, but received: [FlexibleFilter].
From the tests we did on the package in version: 8.6 this type works and in version: 9.1 it is not working and is returning this error.
I validated all my types and there is no error in defining types, everything is ok.
Beta Was this translation helpful? Give feedback.
All reactions