database
database copied to clipboard
Update `Utopia\Database\Query::getByType()` to not be variadic
Variadic functions can be confusing. It's much clearer to use arrays instead:
- public static function getByType(array $queries, string ...$types): array
+ public static function getByType(array $queries, array $types): array