laravel-graphql
laravel-graphql copied to clipboard
Facebook GraphQL for Laravel 5. It supports Relay, eloquent models, validation and GraphiQL.
How to upload files when using laravel-graphql and vue-apollo?
Adding a setup method allows people to load models/resources once instead of multiple times. If you need to verify authorization via a field on a model you later need in...
According to the [documentation on interfaces](https://github.com/Folkloreatelier/laravel-graphql/blob/v1.1/docs/advanced.md#interfaces) for this repository, the `resolveType` method receives an argument `$root`, as so: ``` public function resolveType($root) { // Use the resolveType to resolve the...
I have a list of products associated to each category, I have defined categories as a Type other than Product. The resolver that believes if it runs but does not...
Usable to : #292 #317 Hi guys, I recently needed to implement a search feature in the project that included many filters. I decided to build a flexible and scalable...
> This is a proof of concept post, the following is functional, however it assumes certain patterns, and the code itself could certainly be improved. You should adapt this for...
I added custom query field 'nameLike' in my UsersQuery file. But its don't work with multiple query filter. It's only work when i use alone. Please help. in args function...
Lets say I have a many to many relation. `Users` can have many `Roles`. I have the relational structure: `users` ----- `user_roles` ----- `roles` If I have a UserQuery in...
Sorry if this is in the docs somewhere I looked and didn't see anything. Also looked to see if there was an issue for this. I have a custom type...
Fixes #365 The schema actually gets the correct types, it's just the GraphQL facade that doesn't load them correctly. Which means GraphQL::type() doesn't work for types specified in the types...