I have a simple case class MyContext(queries: Query)
that I provide to the schema with : sangria.schema.Schema(deriveContextObjectType[MyContext, Query, Unit](_.queries)
MyQuery
is a trait of Query
trait MyQuery {
@GraphQLField
def item(ctx: Context[MyContext, Unit])(id: String) ...
}
This works great. But what if I want to nest resolvers?
query {
item {
status # status is resolved from source B
price # price is resolved from source C
}
}
Is that possible to achieve? Would I return an ObjectType[Item]
that has properties status
and price
annotated with @GraphQLField
?
I think you can use
deriveObjectType
for anItem
. It is also able to handle the@GraphQLField
annotation (as an alternative you can also useIncludeMethods
macro setting). Here is an example: