/**
  * Add construct parts to qb
  * @param array $frame
  * @param QueryBuilder $qb
  */
 protected function fillConstruct($frame, $qb)
 {
     $this->varCounter = 0;
     $qb->construct();
     $arrayConstruct = array();
     $arrayConstruct = $this->getArrayConstruct($frame, $arrayConstruct, '?uri');
     $this->addConstructParts($arrayConstruct, $qb);
     $this->varCounter = 0;
 }