bluejay-core 0.3.1

Base GraphQL abstractions
Documentation
1
2
3
4
5
6
7
8
use crate::VariableDirectives;

pub trait FragmentSpread {
    type Directives: VariableDirectives;

    fn name(&self) -> &str;
    fn directives(&self) -> Option<&Self::Directives>;
}