caliban
caliban copied to clipboard
Functional GraphQL library for Scala
I have cloned the quickstart repo https://github.com/zio/zio-quickstart-graphql-webservice and changed the scalaVersion to "3.1.3" in build.sbt and now the code doesn't compile any more, giving following error: ``` [error] -- [E007]...
Updates * [com.softwaremill.sttp.client3:async-http-client-backend-zio](https://github.com/softwaremill/sttp) * [com.softwaremill.sttp.client3:circe](https://github.com/softwaremill/sttp) * [com.softwaremill.sttp.client3:core](https://github.com/softwaremill/sttp) * [com.softwaremill.sttp.client3:zio](https://github.com/softwaremill/sttp) from 3.7.2 to 3.7.4. [GitHub Release Notes](https://github.com/softwaremill/sttp/releases/tag/v3.7.4) - [Version Diff](https://github.com/softwaremill/sttp/compare/v3.7.2...v3.7.4) I'll automatically update this PR to resolve conflicts as long as...
**This is a caliban client question.** I am using version 2.0.1 I have a case class with more than 22 fields. This case class is a custom view. When I...
Right now I can't find a way for entity resolvers to return both partial responses and the errors to the entities that wasn't resolved. So either I get ``` {...
The introspection will be invalid if the schema doesn't contain any String scalars. If the String type is not used it will be omitted from the introspection result. However, the...
Hello I created mutation with next spec: `case class HtmlInput (url: String, html: Upload, attachments: Seq[Attachment] = Seq.empty) ` `case class Attachment(url: Option[String], file: Upload)` , where Upload is caliban.uploads...
I am running into naming collisions and I have to rename things (make them unique) otherwise the schema generation fails. Example: ``` object PersonErrors: case class InvalidAge(...) case class InvalidName(...)...