Fabian Torres

Results 13 comments of Fabian Torres

For me even worse. I just downloaded from [wget https://s3.amazonaws.com/swaggymnia/1.0.0-beta/osx/swaggymnia] and I get

@mlabouardy chmod 777 includes permissions for read, write and execute for everybody That's not the solution. The image is very clear.

I got a similar error: MacBook Pro (Retina, 15-inch, Mid 2014) macOS Sierra v10.12.6 (16G1114)

Thanks for the answer. I understand the problem, but imho access authorization should be before any kind of validation. You might don't want to share any validation problem if an...

I'd check the resolve function in the query type. If you think the problem is the id in UserType, you can do: ``` 'id' => [ 'type' => Type::nonNull(Type::string()), 'resolve'...

GraphQl doesn't have restrictions on HTTP methods. You are sending the mutation over query strings, so you will get those in $_GET always If you want to get data in...

To create your own layer/filter, you can set a new controller in the package options and then use something like: `if($route->named('graphql.query'))` `if($route->named('graphql.query.post'))` There are an option also to split queries...

They are very similar, since rebing is based on this library. `authorize function` was one difference, but now is implemented in both. Pagination and privacy are other implementation in rebing...

Like a said, there is a PR [https://github.com/Folkloreatelier/laravel-graphql/pull/242](url) for pagination, so it is not implemented

You should use authorize for a mutation instead a middleware ` public function authorize() { return TRUE; } ` However the package is not including parameters so far, it would...