Belikin Roman
Belikin Roman
Thanks for the tips, @yanns! Decoupling sangria and the business layers indeed seems like the best option. However, implementing this would require a significant amount of work due to our...
Hi, If you interested, I've uploaded the shared binaries [libsass.zip](https://github.com/cathive/sass-java/files/189355/libsass.zip) for OS X and CentOS x32 & x64 , which were compiled by latest `libsass` version. Put these libraries in...
> My experience is exactly the same as described by @xundeenergie: When started from terminal, `wl-copy` hangs, an "unknown application"-icon appears in the gnome dash, and a notification is shown....
I've also rolled back to version 7.1.0 because our project involves thousands of polygons used for intersection calculations, and the processing speed increased by about 100 times
> [@roman0x58](https://github.com/roman0x58) do you have some example data you'd be willing to share? Or can you describe what you're working with - a gazillion small polys, fewer super complex multipolys,...
@yanns I think there should be something like this, it should reproduce the issue: ```scala object IOExecutionSchemeSpec { import sangria.catseffect.schema.AsyncValue._ private def resolve[F[_]: Async](): F[String] = { import cats.syntax.functor._ Async[F].pure(Option("hello")).map...
@yanns I played around with this issue a bit, maybe we could use something like this: ```scala def async[Ctx, Val, Res, Out, F[_]]( name: String, fieldType: OutputType[Out], description: Option[String] =...