Benedikt Franke

Results 449 comments of Benedikt Franke

@WoLfulus Interesting stuff! So far, the focus for Lighthouse has mostly been ease of use. There are some architectural decisions that were made so that it requires as little config...

@WoLfulus we can extract useful components and launch them as separate projects under https://github.com/laragraph You can join our Slack https://join.slack.com/t/lighthouse-php/shared_invite/enQtMzc1NzQwNTUxMjk3LWMyZWRiNWFmZGUxZmRlNDJkMTQ2ZDA1NzQ1YjVkNTdmNWE1OTUyZjZiN2I2ZGQxNTNiZTZiY2JlNmY2MGUyNTQ

@JasonTheAdams looks great so far! Another thing i would like to change is to get rid of the `DirectiveException` in favour of `DefinitionException` - the latter should be used to...

Search is configured here: https://github.com/nuwave/lighthouse/blob/7dae89a80891290e453e184bd32b24955c1a7ab2/docs/.vuepress/config.js#L65-L69 I don't know if we can grab a hold of the currently displayed version in there. Feel free to give it a try and add...

The first step is the addition of a failing test case, probably to https://github.com/nuwave/lighthouse/blob/master/tests/Integration/Schema/Directives/BelongsToManyDirectiveTest.php

> I cannot seem to run any tests at all, I just keep getting a bunch of errors. Care to tell me how the tests can be setup locally? https://github.com/nuwave/lighthouse/blob/master/CONTRIBUTING.md#how-to-contribute-to-lighthouse

@Jofairden so you are not using joins instead of plain Eloquent relations? Automatically prefixing column names when joins are used is a long standing issue within Laravel. I got my...

@Jofairden you can try and replicate this issue without Lighthouse using the query builder yourself. I believe that this would produce a similar error: ```php $team->players()->where('id', 123) ```

There are some complications to this that we have to consider: ```graphql interface Return {} type ReturnA implements Return {} interface Entity { field: [Return] @paginate } type EntityA implements...

I guess what needs to happen is that the generated paginator for the interface also becomes an interface, and the generated paginator for the implementing type will have to implement...