(schema: GraphQLSchema)
| 407 | |
| 408 | |
| 409 | def legacy_id_names(schema: GraphQLSchema) -> Iterator[IDName]: |
| 410 | for t in legacy_idable_types(schema): |
| 411 | name = legacy_id_name(t.name) |
| 412 | if schema.get_type(name) is None: |
| 413 | yield name |
| 414 | |
| 415 | |
| 416 | def legacy_id_class(type_name: IDName) -> str: |
no test coverage detected