sbt-graphql.GetConsignmentReference.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tdr-generated-graphql_2.13 Show documentation
Show all versions of tdr-generated-graphql_2.13 Show documentation
Classes to be used by the graphql client to communicate with the TDR graphql API
The newest version!
package graphql.codegen
import java.util.UUID
import java.time.ZonedDateTime
import java.time.LocalDateTime
import io.circe.{ Decoder, Encoder }
import io.circe.generic.semiauto.{ deriveDecoder, deriveEncoder }
import sangria.macros._
import types._
object GetConsignmentReference {
object getConsignmentReference extends GraphQLQuery {
val document: sangria.ast.Document = graphql"""query getConsignmentReference($$consignmentId: UUID!) {
getConsignment(consignmentid: $$consignmentId) {
consignmentReference
}
}"""
case class Variables(consignmentId: UUID)
object Variables { implicit val jsonEncoder: Encoder[Variables] = deriveEncoder[Variables] }
case class Data(getConsignment: Option[GetConsignment])
object Data { implicit val jsonDecoder: Decoder[Data] = deriveDecoder[Data] }
case class GetConsignment(consignmentReference: String)
object GetConsignment {
implicit val jsonDecoder: Decoder[GetConsignment] = deriveDecoder[GetConsignment]
implicit val jsonEncoder: Encoder[GetConsignment] = deriveEncoder[GetConsignment]
}
}
}