PascalSenn
PascalSenn
Did you register the serializer with `AddSerializer< StrawberryShakeDateTimeSerializer >()`?
@francisrath I will add a PR so IsProjected works with nested objects too, so there will be a workaround for this ResolverMetadata will come later.
@michaelstaib no this has still to be implemented
i will track this down in the new implementation for 11. It should just work, because we prjoect like this: ```graphql { books { name author { name } }...
Does this query generate the desired result? ``` queryableDto.Select(x=> new BookDto { Name = x.Name, Author = new AuthorDto { Name = x.Author.Name, } }).ToList(); ```
Yes a repro would be great Are there any custom resolvers on author?
@AradAral cool, the repro is definitely helpful. Checked the configuration didn't see anything obvious wrong with it.
Did you also remove it from the resolver declared in the QueryType? It is probably always requested in this case, because Select statement that maps from object to dto projects...
Sorry i messed something up. This could still be an issue
we just fixed UseProjections to do this: ``` Author = e.Author == null ? default(AuthorDto) : new AuthorDto() { Name = e.Author.Name }``` I need to check what it does...