Valeriy Protopopov
Valeriy Protopopov
@frederikhors I originally wanted to implement a validation feature via model attributes. But then I decided not to do that and made a validation through directives resolvers. About the second...
I cannot provide the code, but I can explain it in general terms. I used an [example](https://gqlgen.com/reference/directives/) from the documentation and wrote directives for each type that needs to be...
@vektah Any thoughts?
Go is so "simple" and "straightforward" :laughing:
It seems my [issue](https://github.com/graphql-rust/graphql-client/issues/330) should be linked to this issue. Any news?
I've found a convenient way to make `UuidInterface` mockable for PHP 8.1. You can override the original `UuidInterface` by yours via composer. Just add these two lines in your composer.json:...
@ramsey Agree with you. Unfortunately, I need to do this override, because my project have too many (thousands) test-cases that uses mocked UuidInterface :(
Sure, it's possible. But first you need to set up a rule so that other developers do not write in the old way. _P.S. Random values in test-cases? )))_
In my case `MALLOC_ARENA_MAX` variable set to `2` helped. This value tells the Imagemagick's `malloc` allocator to use memory sparingly. See https://devcenter.heroku.com/articles/tuning-glibc-memory-behavior. Also set `GOMEMLIMIT` to desired max memory limit.
@davidpdrsn Any news on this?