protected static Iter<Triple> backwardLinks(Graph graph, Node x, Collection<Node> excludeProperties)
{
Iter<Triple> iter1 = Iter.iter(graph.find(Node.ANY, Node.ANY, x)) ;
if ( excludeProperties != null )
iter1 = iter1.filter(new FilterExclude(excludeProperties)) ;
return iter1 ;
}