Christian

Results 25 comments of Christian

I was trying this query on select * from demo -- The full data that you want to show your users. where demo.id in ( -- The "deferred join" or...

I am taking a look at this, it seems that relationships are not working well either...

Tried to tackle this by using webonyx QueryPlan helper, which could ease this problem quite a bit, but since it still have unresolved issues, like this: https://github.com/webonyx/graphql-php/pull/831, It will have...

yeah, right now this only works if you do: prohibits:recipients.mintParams so it is dependent on the whole path which is not ideal

@canvural updated the pr, 2 check failing, but does not seem to be related to this

> @crissi What happened? Git and I are not always friend:-)

I wanted to support something like this as well, but do not know how.... ```php /**@param \Illuminate\Database\Eloquent\Collection $foo */ function test(EloquentCollection $foo): void { assertType("string", $foo->whereNotNull('has_been_authorized_at')->first()->has_been_authorized_at); } ```

> Thank you! Feel free to improve it in further PRs. For example from my testing `collect([new User, 1, 'foo'])->whereNotNull('id')` results in `Collection`. It somehow removes all non-objects. will take...

Same problem seems to be adding table.\* on the query even though you already have table.\* on your select. It is in sql server. On Mysql it is doing fine

getting the same error, getKeys is protected in Illuminate Relation so, it can't access that on Laravel 5.8 atleast.