Files
lucent-laravel/src/Query/QueryOptions.php
T
2024-08-16 17:38:26 +03:00

27 lines
559 B
PHP

<?php
namespace Lucent\Query;
final class QueryOptions
{
public function __construct(
public int $limit = 20,
public int $skip = 0,
public int $childrenDepth = -1,
public int $parentsDepth = -1,
public int $childrenLimit = -1,
public int $parentsLimit = -1,
public array $childrenFields = [],
public array $parentFields = [],
public array $sort = [],
public array $status = ["published", "draft"],
public string $notLinked = ""
)
{
}
}