graphqlite
graphqlite copied to clipboard
Use PHP Attributes/Annotations to declare your GraphQL API
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. Release notes Sourced from actions/upload-artifact's releases. v4.0.0 What's Changed The release of upload-artifact@v4 and download-artifact@v4 are major changes to the backend architecture of Artifacts....
We use graphqlite's external type declaration feature to map entities to graphql object types but not all of our services return entities, some of them return dto's, we then have...
Updates the requirements on [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) to permit the latest version. Changelog Sourced from phpunit/phpunit's changelog. [10.0.4] - 2023-02-05 Fixed #5169: Parameter type for constructor of GreaterThan and LessThan constraints does...
I widely use GraphQLite for admin console in my Symphony project. I really enjoy it! The only reason I don't use it for public API is overhead in execution speed....
The following annotations are confusing and have a lot of overlap in their documented functionality. - `#[Logged]` - `#[Right]` - `#[HideIfUnauthorized]` Personally, we don't use any of them and I...
I am getting next error when using @Security with External type declaration. Version: 5.0.3 "array_combine(): Argument #1 ($keys) and argument #2 ($values) must have the same number of elements" vendor/thecodingmachine/graphqlite/src/Middlewares/SecurityFieldMiddleware.php:132...
Hello, This issue is just to open a discussion. I would like to write my paginated query like this : ```php class MyController { /** * @return Porpaginas\Result */ #[Query]...
Hello, With this PR this code will preserve MyCustomInputType ```php $factory = new SchemaFactory(); $factory->setSchemaConfig(SchemaConfig::create([ 'types' => [ MyCustomInputType::getInstance() ] ])); $schema = $factory->createSchema(); ```
Fix bug of calling prefetch method only once with not all type objects when prefetching is on different nesting levels. Running the new test without the fix shows that prefetchPosts...