Skip to content

Commit

Permalink
Create a lite executable for fat interface used schema
Browse files Browse the repository at this point in the history
Reviewed By: ginfung

Differential Revision: D49214473

fbshipit-source-id: ae0d510eeb572774bc2258fb5d23004ca104144d
  • Loading branch information
mjmahone authored and facebook-github-bot committed Sep 14, 2023
1 parent 0d63f5a commit 1decb24
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions compiler/crates/schema/src/in_memory/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -765,12 +765,18 @@ impl InMemorySchema {
TypeSystemDefinition::ObjectTypeExtension { .. } => {}
TypeSystemDefinition::InterfaceTypeExtension { .. } => {}
TypeSystemDefinition::EnumTypeExtension { .. } => {}
TypeSystemDefinition::SchemaExtension { .. } => todo!("SchemaExtension"),
TypeSystemDefinition::UnionTypeExtension { .. } => todo!("UnionTypeExtension"),
TypeSystemDefinition::SchemaExtension { .. } => {
todo!("SchemaExtension not implemented: {}", definition)
}
TypeSystemDefinition::UnionTypeExtension { .. } => {
todo!("UnionTypeExtension not implemented: {}", definition)
}
TypeSystemDefinition::InputObjectTypeExtension { .. } => {
todo!("InputObjectTypeExtension")
todo!("InputObjectTypeExtension not implemented: {}", definition)
}
TypeSystemDefinition::ScalarTypeExtension { .. } => {
todo!("ScalarTypeExtension not implemented: {}", definition)
}
TypeSystemDefinition::ScalarTypeExtension { .. } => todo!("ScalarTypeExtension"),
}
}

Expand Down

0 comments on commit 1decb24

Please sign in to comment.