allRootTypenames function
Implementation
Set<String> allRootTypenames(Map<String, TypePolicy> typePolicies) {
return {
...OperationType.values.map(
(operationType) => typenameForOperationType(
operationType,
typePolicies,
),
)
};
}