Konstantin Babushkin

Results 19 comments of Konstantin Babushkin

That's an old version of Laravel factories. They have rewritten it in the 8th version.

Please let me know if you have any questions or need any assistance from me.

I have the same problem. It happens if any table on rebuild has more than 2550 records. Here is why: 1) `RedbuildService` creates a new database https://github.com/mbdavid/LiteDB/blob/c4db4ab3b1e594439921d594f403775c82f9e8c7/LiteDB/Engine/Services/RebuildService.cs#L55 2) It starts...

This issue makes using `NSubstitute` (and any other mocker) to mock `SSH.NET` very hard. In order to mock main methods like `RunCommand` or `CreateCommand`, one must create `SshCommand`. But it...

what exact breaking change are you referring to? As I understand the only problem might occur if the user had a code like this ```csharp SshCommand command = client.CreateCommand("ls"); ```...

You may define your own default field resolver. See https://lighthouse-php.com/master/digging-deeper/extending-lighthouse.html#changing-the-default-resolver https://github.com/nuwave/lighthouse/issues/2191

I don't really get it. if root is empty how can you get a property of that null object? ```graphql User { name @canRoot("read") } ``` `@canRoot` checks authorization on...

It doesn't made it much clearer. And some of your points are incorrect. However, let's stick to your main problem. What do you want to achieve? As I understand, your...

> I'd argue that not returning an auth exception on an empty list when using @canResolved, exposes information. You can remove this exposure by either defining Gate globally, or by...