laravel-graphql
laravel-graphql copied to clipboard
Facebook GraphQL for Laravel 5. It supports Relay, eloquent models, validation and GraphiQL.
In order to pin version in composer.json we would need a new release. Thanks! and also packagist is not up-to-date, so installing it together with laravel 5.7 does not work
I'm facing a strange behaviour. As soon as I define an input object to have a relation to itself (or to another input object that references the first one) I'm...
Following the instructions in the installation guide for Lumen, running `php artisan graphql:publish` generates an error, `In LumenServiceProvider.php line 50: Call to undefined method Folklore\GraphQL\LumenServiceProvider::command()` I installed laravel-graphql 1.1.0
When I try to use interface or union, laravel server always die. using interface ``` php class Event extends BaseType { public function interfaces() { return [ GraphQL::type('BaseEvent') // error...
Hello everyone! Please look at the code: ``` php
php ```php class SignInMutation extends Mutation { use DispatchesJobs; protected $attributes = [ 'name' => 'SignIn Mutation' ]; public function type() { return ofcold('graphql')->type('IssueTokenType'); } public function args() { return...
The latest tagged release as well as master depends on webonxy/graphql `~0.10.2`. This is quite an old version and is not compatible with PHP 7.3 due this somewhere in the...
The underlying library supports metadata in for the types, https://webonyx.github.io/graphql-php/type-system/object-types/#custom-metadata, how do I use this?
I want to use dataloader https://github.com/overblog/dataloader-php, but I don't know how to integrate this to query-per-class laravel-graphql style. Is someone had experience with it?
Hi, I think that middleware_schema parameter in config doesn't work. I created another schema "secret", to this point everything is working fine but code below doesn't. It seems that even...