colors and filters

This commit is contained in:
2024-08-17 19:23:19 +03:00
parent db37653748
commit 322962403d
38 changed files with 648 additions and 556 deletions
+2
View File
@@ -145,6 +145,7 @@ final class Query
$query = DB::table("records");
$query = $this->parseFilters($query);
$query = $this->findNotLinked($query);
if ($this->options->limit > 0) {
$query->limit($this->options->limit);
$query->offset($this->options->skip);
@@ -191,6 +192,7 @@ final class Query
$query = DB::table("records");
$query = $this->parseFilters($query);
$query = $this->findNotLinked($query);
$graph = $this->run();
$graph->total = $query->count();
return $graph;