drunk icon indicating copy to clipboard operation
drunk copied to clipboard

A simple GraphQL client on top of Sangria, Akka HTTP and Circe.

Results 6 drunk issues
Sort by recently updated
recently updated
newest added

Could you please publish this to maven repository on your package there is no drunk listed https://mvnrepository.com/artifact/com.github.jarlakxen

**EntityStreamSizeExceptio: actual entity size (Some(19815485)) exceeded content length limit (8388608 bytes)?** It says to configure 'akka.htttp[server|cleint].parsing.max-content-length' or calling 'HttpEntity.withZiseLimit' Can you help how to provide above options ? client call::...

Hi, i implemented this client: ``` package com.github.jarlakxen.drunk import com.github.jarlakxen.drunk.GraphQLClient.GraphQLResponse import org.scalatest.FlatSpec import com.github.jarlakxen.drunk.circe.deriveByTypenameDecoder import com.typesafe.scalalogging.LazyLogging import de.salt.d4s.model.entities.{Delivery, DeliveryItem} import io.circe._ import io.circe.generic.semiauto._ import sangria.macros._ import java.util.concurrent.TimeUnit.MILLISECONDS import scala.concurrent.duration.Duration import...

Fixes compiler warnings regarding the ActorMaterializer. Depends on the Scala 2.13 PR (#11 )

The current implementation locks us into using the the AkkaBackend. A more flexible approach would be to swap it out to use STTP which has its own backend concept (one...