Files
lucent-laravel/src/Query/QueryOptions.php
T

27 lines
559 B
PHP
Raw Normal View History

2023-10-02 23:10:49 +03:00
<?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,
2023-10-13 21:06:23 +03:00
public array $childrenFields = [],
public array $parentFields = [],
2023-10-02 23:10:49 +03:00
public array $sort = [],
2024-08-16 17:38:26 +03:00
public array $status = ["published", "draft"],
public string $notLinked = ""
2023-10-02 23:10:49 +03:00
)
{
}
}