startingOperator2.addSucceedingOperator(new OperatorIDTuple(join, 0));
// }
final BasicOperator startingOperator = node.jjtGetChild(1).accept(this, connection, graphConstraint, v, object, subjectNode, objectNode);
startingOperator.addSucceedingOperator(new OperatorIDTuple(join,1));
final Projection projection = new Projection();
projection.addProjectionElement(subject);
projection.addProjectionElement(object);
if(graphConstraint!=null && graphConstraint.isVariable() && !graphConstraint.equals(getItem(subjectNode)) && !graphConstraint.equals(getItem(objectNode))) {
projection.addProjectionElement((Variable)graphConstraint);
}
join.addSucceedingOperator(new OperatorIDTuple(projection,0));