module ElasticGraph::GraphQL::QueryAdapter::Filters::NilFocusedSet

def intersection(other)

def intersection(other)
  (includes_nil? && other.includes_nil?) ? IncludesNilSet : ExcludesNilSet
end

def union(other)

def union(other)
  (includes_nil? || other.includes_nil?) ? IncludesNilSet : ExcludesNilSet
end