pub trait FragmentDefinition: Indexable {
type Directives: VariableDirectives;
type SelectionSet: SelectionSet;
// Required methods
fn name(&self) -> &str;
fn type_condition(&self) -> &str;
fn directives(&self) -> Option<&Self::Directives>;
fn selection_set(&self) -> &Self::SelectionSet;
}