Hey, I am looking into setting up Data Builders while using custom scalar and multiple modules. When I mock out the query data in a feature module and try and run the test I get an error of
Don't know how to instantiate leaf UnixTime
. This is one of my scalar types, so I created a fake resolver, mostly using the example in the docs. This fixes up the one error, but then causes another one of
Don't know how to instantiate leaf CardOrderStatus
. This now is a Enum from our schema and if I mock it out, it causes another error saying it canāt find next enum from our schema. When I look at the value of
__Schema.all
, it is just an empty list, but looking at all the apollo generated code, I see the
__Schema.all
file is in the module that the
schema.graphqls
file is in, and all the types for
CardOrderStatus
and all the other enums types are in a other feature module. Is there a way to have all the types be in the
__Schema.all
list so I donāt have to mock them all out?