Example #1
0
 public function deleteQuery($accountId, $queryId)
 {
     $tableId = $this->getSysBucketId() . '.' . $accountId;
     $options = ['whereColumn' => 'id', 'whereValues' => $queryId];
     $this->storageApi->deleteTableRows($tableId, $options);
     return;
 }