laravel-graphql
laravel-graphql copied to clipboard
Facebook GraphQL for Laravel 5. It supports Relay, eloquent models, validation and GraphiQL.
I have researched basic GraphQL recently and as I read the explanation in https://dev-blog.apollodata.com/graphql-explained-5844742f195e, GraphQL execute nested query in tree structure, It means the top-level query resolver will be execute...
I will submit a PR for this if the team believe its a good addition. Currently you can create types anonymously like this ```PHP GraphQL::addType(new class extends BaseType { protected...
It seems to me that i can not write a mutation and then a query in the same batch. Is it true? ``` mutation { userLogin(sessionToken: "9bcbb94d-ed35-4d0f-bcb6-e922cf587c15") { userId }...
I've figured out how to pass variables of custom input types. But i cant pass variable of a standard type String. Is it a bug? ``` { "data": null, "errors":...
Hello Maintainers, We have been working on a new PHP implementation of the GraphQL specification and we are closing in on a version 1.0 release. I just wanted to stop...
The goals I want to achieve are the following: 1. If an exception occurs in the code, show a stack trace. 2. Log exceptions and their stack trace to a...
Following schema will not work as "String" class is not in scope. ``` 'query' => [ 'person' => 'String' ], ``` How can I access "built-in" types of graphql?
Usage: ```bash $ php artisan make:graphql:input ```
Hi @dmongeau, I've been reading along [here](https://github.com/howtographql/howtographql/blob/master/content/frontend/react-relay/7-subscriptions.md) on the Relay subscription feature and was wondering if you're planning on adding this to this wonderfull repo. IMHO it should be perfectly...
See issue #284 This is the PR in the feature/relay branch to be able to view the actual differences (since the Relay folder is missing in master)