graphqlite icon indicating copy to clipboard operation
graphqlite copied to clipboard

Use PHP Attributes/Annotations to declare your GraphQL API

Results 58 graphqlite issues
Sort by recently updated
recently updated
newest added
trafficstars

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...

enhancement
additional info needed

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...

help wanted
good first issue
dependencies

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...

enhancement
dependencies
additional info needed

there is any way to write integration tests aka (functional tests) against Graphql query for both Symfony & Laravel framework?

documentation

Lets assume we have to following setup: ```php class ControllerA { /** * @Query() * @returns string[] */ allPosts() : array; } ... class ControllerB { /** * @Query() *...

help wanted

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...

bug

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...

help wanted

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 ;-)

enhancement

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...

enhancement
help wanted

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...