Supergraph – Added
- JourneyInstanceProcess.tasksV2, JourneyInstance.taskV2 and JourneySchemaProcess.tasks to return Journey Tasks in a polymorphic manner (e.g PolicyTaskDto, ProductTaskDto etc.) exposing type-specific properties
fragment PolymorphicTaskProps on JourneyTaskDto {
id
taskType
... on PolicyTaskDto {
policyTarget
policyCategory
policyRequirementType
}
... on ProductTaskDto {
productActions
productScopingRuleSet
}
}