public void visit(final ASTInsert node, OperatorConnection connection) {
LinkedList<Tuple<Construct, Item>> graphConstraints = this.getGraphConstructsAndCheckForBNodesAndVariables((ASTConstructTemplate)node.jjtGetChild(node.jjtGetNumChildren() - 1));
LinkedList<MultipleURIOperator> muos = new LinkedList<MultipleURIOperator>();
for(int i=0; i < graphConstraints.size(); i++){
muos.add(new Insert(null, this.indexScanCreator.getDataset()));
}
insertMultipleURIOperator(muos, graphConstraints, node);
}