CollectTypes constructor

CollectTypes(
  1. Iterable<GraphQLType> types
)

Collects all named types from types

Implementation

CollectTypes(Iterable<GraphQLType> types) {
  types.forEach(_fetchAllTypesFromType);
}