use std::collections::HashSet;
use crate::query_planner::ast::type_aware_selection::TypeAwareSelection;
#[derive(Default)]
pub struct ExcludedFromLookup<'graph> {
pub graph_ids: HashSet<&'graph str>,
pub requirement: HashSet<&'graph TypeAwareSelection>,
}
impl<'graph> ExcludedFromLookup<'graph> {
pub fn new() -> ExcludedFromLookup<'graph> {
Default::default()
}
}