graphqlite
graphqlite copied to clipboard
Use PHP Attributes/Annotations to declare your GraphQL API
This post is for planning purposes. Sometime in the next year or so, PHP 7 will be unsupported, no longer receiving security updates. It's reasonable that we drop support for...
Updates the requirements on [doctrine/annotations](https://github.com/doctrine/annotations) to permit the latest version. Release notes Sourced from doctrine/annotations's releases. 1.13.3 Release Notes for 1.13.3 1.13.x bugfix release (patch) 1.13.3 Total issues resolved: 0...
Hello, hopefully this is not duplication of existing issue. Is there support for Mutation namespaces like described there: https://graphql-rules.com/rules/mutation-namespaces? What I want is to be able to have something like...
there is any way to write integration tests aka (functional tests) against Graphql query for both Symfony & Laravel framework?
Lets assume we have to following setup: ```php class ControllerA { /** * @Query() * @returns string[] */ allPosts() : array; } ... class ControllerB { /** * @Query() *...
Hey there, ```graphql query foobar($foobar: Foobar!){ foobar(foobar: $foobar){ foobar } } ``` Calling this query on an environment that has no `Foobar` type defined results in a 500 http response...
Hi, I was wondering, if it would be possible to add caching on the server side using i.e. Redis. As far as I can tell it should be possible to...
In order to secure a whole controller, to be able to add a `@Security("user.hasRight('MY_SUPER_RIGHT')")` above a Controller class could be a game changer ;-)
I've been struggling with getting a custom scalar type working with GraphQLite. I'm running into a number of issues, but at the end of the day, I'm just not clear...
Currently, the PHPDoc comment is exposed over the schema as the description. This is fine to remain. However, often there are times where internals are needed in the PHPDoc. In...