Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add derivation of Schema for union types (towards #1926) #2215

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions core/src/main/scala-3/caliban/schema/SchemaDerivation.scala
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,8 @@ trait SchemaDerivation[R] extends CommonSchemaDerivation {

inline def genDebug[R, A]: Schema[R, A] = PrintDerived(derived[R, A])

inline def unionType[T]: Schema[R, T] = ${ TypeUnionDerivation.typeUnionSchema[R, T] }

final lazy val auto = new AutoSchemaDerivation[Any] {}

final class SemiAuto[A](impl: Schema[R, A]) extends Schema[R, A] {
Expand Down
79 changes: 79 additions & 0 deletions core/src/main/scala-3/caliban/schema/TypeUnionDerivation.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
package caliban.schema

import caliban.introspection.adt.__Type

import scala.quoted.*

object TypeUnionDerivation {
inline def derived[R, T]: Schema[R, T] = ${ typeUnionSchema[R, T] }

def typeUnionSchema[R: Type, T: Type](using quotes: Quotes): Expr[Schema[R, T]] = {
import quotes.reflect.*

val typeName = TypeRepr.of[T].show

if (typeName.contains("|")) {
report.error(
s"You must explicitly add type parameter to derive Schema for a union type in order to capture the name of the type alias"
)
}

class TypeAndSchema[A](val typeRef: String, val schema: Expr[Schema[R, A]], val tpe: Type[A])

def rec[A](using tpe: Type[A]): List[TypeAndSchema[?]] =
TypeRepr.of(using tpe).dealias match {
case OrType(l, r) =>
rec(using l.asType.asInstanceOf[Type[Any]]) ++ rec(using r.asType.asInstanceOf[Type[Any]])
case otherRepr =>
val otherString: String = otherRepr.show
val expr: TypeAndSchema[A] =
Expr.summon[Schema[R, A]] match {
case Some(foundSchema) =>
TypeAndSchema[A](otherString, foundSchema, otherRepr.asType.asInstanceOf[Type[A]])
case None =>
quotes.reflect.report.errorAndAbort(s"Couldn't resolve Schema[Any, $otherString]")
}

List(expr)
}

val typeAndSchemas: List[TypeAndSchema[?]] = rec[T]

val schemaByTypeNameList: Expr[List[(String, Schema[R, Any])]] = Expr.ofList(
typeAndSchemas.map { case (tas: TypeAndSchema[a]) =>
given Type[a] = tas.tpe
'{ (${ Expr(tas.typeRef) }, ${ tas.schema }.asInstanceOf[Schema[R, Any]]) }
}
)

val annotations: Expr[List[Any]] = magnolia1.Macro.anns[T](summon, quotes)
'{
val schemaByName: Map[String, Schema[R, Any]] = ${ schemaByTypeNameList }.toMap
new Schema[R, T] {

def resolve(value: T): Step[R] = {
var ret: Step[R] = null
${
Expr.block(
typeAndSchemas.map { case (tas: TypeAndSchema[a]) =>
given Type[a] = tas.tpe

'{ if value.isInstanceOf[a] then ret = schemaByName(${ Expr(tas.typeRef) }).resolve(value) }
},
'{ require(ret != null, s"no schema for ${value}") }
)
}
ret
}

def toType(isInput: Boolean, isSubscription: Boolean): __Type =
Types.makeUnion(
Some(DerivationUtils.getName(${ annotations }, ${ Expr(typeName) })),
DerivationUtils.getDescription(${ annotations }),
schemaByName.values.map(_.toType_(isInput, isSubscription)).toList,
directives = Option(DerivationUtils.getDirectives(${ annotations })).filter(_.nonEmpty)
)
}
}
}
}
54 changes: 53 additions & 1 deletion core/src/test/scala-3/caliban/schema/Scala3DerivesSpec.scala
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
package caliban.schema

import caliban.*
import caliban.schema.Annotations.{ GQLDescription, GQLField, GQLInterface, GQLName }
import caliban.parsing.adt.Directive
import caliban.schema.Annotations.{ GQLDescription, GQLDirective, GQLField, GQLInterface, GQLName }
import zio.test.{ assertTrue, ZIOSpecDefault }
import zio.{ RIO, Task, ZIO }

Expand Down Expand Up @@ -273,6 +274,57 @@ object Scala3DerivesSpec extends ZIOSpecDefault {
data1 == """{"enum2String":"ENUM1"}""",
data2 == """{"enum2String":"ENUM2"}"""
)
},
test("union type") {
final case class Foo(value: String) derives Schema.SemiAuto
final case class Bar(foo: Int) derives Schema.SemiAuto
final case class Baz(bar: Int) derives Schema.SemiAuto
@GQLName("Payload2")
@GQLDescription("Union type Payload")
@GQLDirective(Directive.apply("mydirective", Map("arg" -> Value.StringValue("value"))))
type Payload = Foo | Bar | Baz
given Schema[Any, Payload] = Schema.unionType[Payload]

final case class QueryInput(isFoo: Boolean) derives ArgBuilder, Schema.SemiAuto
final case class Query(testQuery: QueryInput => zio.UIO[Payload]) derives Schema.SemiAuto

val gql = graphQL(RootResolver(Query(i => ZIO.succeed(if (i.isFoo) Foo("foo") else Bar(1)))))

val expectedSchema =
"""schema {
query: Query
}

"Union type Payload"
union Payload2 @mydirective(arg: "value") = Foo | Bar | Baz

type Bar {
foo: Int!
}

type Baz {
bar: Int!
}

type Foo {
value: String!
}

type Query {
testQuery(isFoo: Boolean!): Payload2!
}""".stripMargin
val interpreter = gql.interpreterUnsafe

for {
res1 <- interpreter.execute("{ testQuery(isFoo: true){ ... on Foo { value } } }")
res2 <- interpreter.execute("{ testQuery(isFoo: false){ ... on Bar { foo } } }")
data1 = res1.data.toString
data2 = res2.data.toString
} yield assertTrue(
data1 == """{"testQuery":{"value":"foo"}}""",
data2 == """{"testQuery":{"foo":1}}""",
gql.render == expectedSchema
)
}
)
}
Expand Down
Loading