bluejay-core 0.3.1

Base GraphQL abstractions
Documentation
1
2
3
4
5
6
use crate::executable::Selection;
use crate::{AsIter, Indexable};

pub trait SelectionSet: AsIter<Item = Self::Selection> + Indexable {
    type Selection: Selection;
}