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
typeQuery{
getEntity: Entity!
}
typeEntity{
...
something: Something! # attention here , this is not prefixedSomething
}
typeSomething{...}
i couldn't find a way to resolve Entity.prefixedSomething as Entity.something beside explicitly adding another method
with @SchemaMapping(type="Entity", field="something")
which i think should be reserved for something more complicated than just a simple name override,
i couldn't find anything in docs, i'm looking for more compact way (possibly annotation based)