Markus Podar
Markus Podar
Is there anything else I can do? AFAIK I addresses the feedback or did I miss anything, which blocks us?
I definitely feel caught in a catch-22 here and I get no clear indicator how I can move forward. I feels out of scope for me to tackle the "XML...
> because to me it looks like a shit ton of work to switch on bigger project It's already ton of work a small project as I'm having. > It...
@spawnia my biggest grief was that _all_ exceptions where reported in the GraphQL result payload but they were not logged anywhere => completely useless: - got a DB error =>...
Resolving is a GraphQL context to retrieve data; see also the docs for the underlying library: http://webonyx.github.io/graphql-php/data-fetching/ You're question is a bit light on the surrounding context, but I'll give...
Yes, do it "the Laravel" way: - either inject `Request` in your constructor - or access `app('request')` where you need it.
There's yet another way: - you can make your own `GraphQLController` (extend it and specify it in your `config/graphql.php`) - override `queryContext` and add it do the context right from...
@spawnia did you make an actual switch in a project, can you share some experience (effort/time required)? The paradigm/approach to declare and write up types, resolves, etc. seems quite different...
> i had a few hundred auto-generated types 👀 You mean auto-generated from models to GraphqQL types? If so, how did you do that? I'm also having quote some non-Eloquent...
The suggestion in https://github.com/Folkloreatelier/laravel-graphql/issues/27#issuecomment-321085485 is correct. Please show some code of your type where you have the problem.