We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddb4ded commit 253d306Copy full SHA for 253d306
crates/apollo-compiler/src/schema/from_ast.rs
@@ -268,6 +268,10 @@ impl SchemaBuilder {
268
}
269
270
271
+ pub fn iter_orphan_extension_types(&self) -> impl Iterator<Item = &Name> {
272
+ self.orphan_type_extensions.keys()
273
+ }
274
+
275
/// Returns the schema built from all added documents
276
#[allow(clippy::result_large_err)] // Typically not called very often
277
pub fn build(self) -> Result<Schema, WithErrors<Schema>> {
0 commit comments