-
Notifications
You must be signed in to change notification settings - Fork 323
Closed as not planned
Labels
status: invalidAn issue that we don't feel is validAn issue that we don't feel is valid
Description
I have a base interface defined as
interface Asset @key(fields: "id") {
id: ID! # read only
...
}
and several interfaces extending it like
interface UsesInBoardAsset implements Asset @key(fields: "id") {
id: ID! # read only
...
}
After 1.4.x changes, i am getting
Caused by: java.lang.IllegalStateException: Unmapped entity types: 'UsesInBoardAsset', 'UsesOnBusBarAsset', 'MechanicalAirAsset',
But all of those interfaces have an entity mapping based on the base interface, they are served using the
@EntityMapping(value = "Asset")
fun assetEntities(
@Argument(name = "id") ids: List<String>,
env: DataFetchingEnvironment,
) = fetchAssetsByIds(ids, env)
which works correctly.
Metadata
Metadata
Assignees
Labels
status: invalidAn issue that we don't feel is validAn issue that we don't feel is valid