You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, we have to explicitely declare all the translated types during the schema building. The Package should be able to register these types automatically, for example via a type interceptor.
services
.AddRouting()
.AddGraphQLServer()
.AddTranslation(c => c
.AddTranslatableType<HairColor>() // we should not have to do this, a TypeInterceptor could possibly do this automatically
)
The text was updated successfully, but these errors were encountered:
Currently, we have to explicitely declare all the translated types during the schema building. The Package should be able to register these types automatically, for example via a type interceptor.
The text was updated successfully, but these errors were encountered: