26 lines
520 B
PHP
26 lines
520 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"]
|
|
)
|
|
{
|
|
|
|
}
|
|
|
|
}
|