QueryInterface

A persistence query interface

Tags
template

T of object

Table of Contents

Constants

OPERATOR_CONTAINS  = 8
The 'contains' comparison operator for collections.
OPERATOR_EQUAL_TO  = 1
The '=' comparison operator.
OPERATOR_EQUAL_TO_NULL  = 101
For NULL we have to use 'IS' instead of '='
OPERATOR_GREATER_THAN  = 5
The '>' comparison operator.
OPERATOR_GREATER_THAN_OR_EQUAL_TO  = 6
The '>=' comparison operator.
OPERATOR_IN  = 9
The 'in' comparison operator.
OPERATOR_IS_EMPTY  = 11
The 'is empty' comparison operator for collections.
OPERATOR_IS_NULL  = 10
The 'is NULL' comparison operator.
OPERATOR_LESS_THAN  = 3
The '<' comparison operator.
OPERATOR_LESS_THAN_OR_EQUAL_TO  = 4
The '<=' comparison operator.
OPERATOR_LIKE  = 7
The 'like' comparison operator.
OPERATOR_NOT_EQUAL_TO  = 2
The '!=' comparison operator.
OPERATOR_NOT_EQUAL_TO_NULL  = 202
For NULL we have to use 'IS NOT' instead of '!='
ORDER_ASCENDING  = 'ASC'
Constants representing the direction when ordering result sets.
ORDER_DESCENDING  = 'DESC'

Methods

contains()  : ComparisonInterface
Returns a "contains" criterion used for matching objects against a query.
count()  : int
Returns the query result count.
equals()  : ComparisonInterface
Returns an equals criterion used for matching objects against a query.
execute()  : QueryResultInterface|array<int, array<string, mixed>>
Executes the query and returns the result.
getConstraint()  : ConstraintInterface|null
Gets the constraint for this query.
getLimit()  : int
Returns the maximum size of the result set to limit.
getOffset()  : int
Returns the start offset of the result set.
getOrderings()  : array<string, string>
Gets the property names to order the result by, like this: array( 'foo' => \TYPO3\CMS\Extbase\Persistence\QueryInterface::ORDER_ASCENDING, 'bar' => \TYPO3\CMS\Extbase\Persistence\QueryInterface::ORDER_DESCENDING )
getQuerySettings()  : QuerySettingsInterface
Returns the Query Settings.
getSource()  : SourceInterface
Gets the node-tuple source for this query.
getStatement()  : Statement
Returns the statement of this query.
getType()  : string
Returns the type this query cares for.
greaterThan()  : ComparisonInterface
Returns a greater than criterion used for matching objects against a query
greaterThanOrEqual()  : ComparisonInterface
Returns a greater than or equal criterion used for matching objects against a query
in()  : ComparisonInterface
Returns an "in" criterion used for matching objects against a query. It matches if the property's value is contained in the multivalued operand.
lessThan()  : ComparisonInterface
Returns a less than criterion used for matching objects against a query
lessThanOrEqual()  : ComparisonInterface
Returns a less or equal than criterion used for matching objects against a query
like()  : ComparisonInterface
Returns a like criterion used for matching objects against a query.
logicalAnd()  : AndInterface
Performs a logical conjunction of multiple given constraints. The method takes an arbitrary number of constraints and concatenates them with a boolean AND.
logicalNot()  : NotInterface
Performs a logical negation of the given constraint
logicalOr()  : OrInterface
Performs a logical disjunction of multiple given constraints. The method takes an arbitrary number of constraints and concatenates them with a boolean OR.
matching()  : QueryInterface
The constraint used to limit the result set. Returns $this to allow for chaining (fluid interface).
setLimit()  : QueryInterface
Sets the maximum size of the result set to limit. Returns $this to allow for chaining (fluid interface).
setOffset()  : QueryInterface
Sets the start offset of the result set to offset. Returns $this to allow for chaining (fluid interface).
setOrderings()  : QueryInterface
Sets the property names to order the result by. Expected like this: array( 'foo' => \TYPO3\CMS\Extbase\Persistence\QueryInterface::ORDER_ASCENDING, 'bar' => \TYPO3\CMS\Extbase\Persistence\QueryInterface::ORDER_DESCENDING )
setQuerySettings()  : mixed
Sets the Query Settings. These Query settings must match the settings expected by the specific Storage Backend.
setSource()  : mixed
Sets the source to fetch the result from
setType()  : void
Set the type this query cares for.

Constants

OPERATOR_CONTAINS

The 'contains' comparison operator for collections.

public mixed OPERATOR_CONTAINS = 8

OPERATOR_EQUAL_TO

The '=' comparison operator.

public mixed OPERATOR_EQUAL_TO = 1

OPERATOR_EQUAL_TO_NULL

For NULL we have to use 'IS' instead of '='

public mixed OPERATOR_EQUAL_TO_NULL = 101

OPERATOR_GREATER_THAN

The '>' comparison operator.

public mixed OPERATOR_GREATER_THAN = 5

OPERATOR_GREATER_THAN_OR_EQUAL_TO

The '>=' comparison operator.

public mixed OPERATOR_GREATER_THAN_OR_EQUAL_TO = 6

OPERATOR_IN

The 'in' comparison operator.

public mixed OPERATOR_IN = 9

OPERATOR_IS_EMPTY

The 'is empty' comparison operator for collections.

public mixed OPERATOR_IS_EMPTY = 11

OPERATOR_IS_NULL

The 'is NULL' comparison operator.

public mixed OPERATOR_IS_NULL = 10

OPERATOR_LESS_THAN

The '<' comparison operator.

public mixed OPERATOR_LESS_THAN = 3

OPERATOR_LESS_THAN_OR_EQUAL_TO

The '<=' comparison operator.

public mixed OPERATOR_LESS_THAN_OR_EQUAL_TO = 4

OPERATOR_LIKE

The 'like' comparison operator.

public mixed OPERATOR_LIKE = 7

OPERATOR_NOT_EQUAL_TO

The '!=' comparison operator.

public mixed OPERATOR_NOT_EQUAL_TO = 2

OPERATOR_NOT_EQUAL_TO_NULL

For NULL we have to use 'IS NOT' instead of '!='

public mixed OPERATOR_NOT_EQUAL_TO_NULL = 202

ORDER_ASCENDING

Constants representing the direction when ordering result sets.

public mixed ORDER_ASCENDING = 'ASC'

ORDER_DESCENDING

public mixed ORDER_DESCENDING = 'DESC'

Methods

contains()

Returns a "contains" criterion used for matching objects against a query.

public contains(string $propertyName, mixed $operand) : ComparisonInterface

It matches if the multivalued property contains the given operand.

If NULL is given as $operand, there will never be a match!

Parameters
$propertyName : string

The name of the multivalued property to compare against

$operand : mixed

The value to compare with

Tags
throws
InvalidQueryException

if used on a single-valued property

Return values
ComparisonInterface

count()

Returns the query result count.

public count() : int
Return values
int

The query result count

equals()

Returns an equals criterion used for matching objects against a query.

public equals(string $propertyName, mixed $operand[, bool $caseSensitive = true ]) : ComparisonInterface

It matches if the $operand equals the value of the property named $propertyName. If $operand is NULL a strict check for NULL is done. For strings the comparison can be done with or without case-sensitivity.

Parameters
$propertyName : string

The name of the property to compare against

$operand : mixed

The value to compare with

$caseSensitive : bool = true

Whether the equality test should be done case-sensitive for strings

Return values
ComparisonInterface

execute()

Executes the query and returns the result.

public execute([bool $returnRawQueryResult = false ]) : QueryResultInterface|array<int, array<string, mixed>>
Parameters
$returnRawQueryResult : bool = false

avoids the object mapping by the persistence

Tags
phpstan-return

($returnRawQueryResult is true ? list<array<string,mixed>> : QueryResultInterface<int,T>)

Return values
QueryResultInterface|array<int, array<string, mixed>>

The query result object or an array if $returnRawQueryResult is TRUE

getLimit()

Returns the maximum size of the result set to limit.

public getLimit() : int
Return values
int

getOffset()

Returns the start offset of the result set.

public getOffset() : int
Return values
int

getOrderings()

Gets the property names to order the result by, like this: array( 'foo' => \TYPO3\CMS\Extbase\Persistence\QueryInterface::ORDER_ASCENDING, 'bar' => \TYPO3\CMS\Extbase\Persistence\QueryInterface::ORDER_DESCENDING )

public getOrderings() : array<string, string>
Return values
array<string, string>

getType()

Returns the type this query cares for.

public getType() : string
Tags
phpstan-return

class-string<T>

Return values
string

greaterThan()

Returns a greater than criterion used for matching objects against a query

public greaterThan(string $propertyName, mixed $operand) : ComparisonInterface
Parameters
$propertyName : string

The name of the property to compare against

$operand : mixed

The value to compare with

Tags
throws
InvalidQueryException

if used on a multi-valued property or with a non-literal/non-DateTime operand

Return values
ComparisonInterface

greaterThanOrEqual()

Returns a greater than or equal criterion used for matching objects against a query

public greaterThanOrEqual(string $propertyName, mixed $operand) : ComparisonInterface
Parameters
$propertyName : string

The name of the property to compare against

$operand : mixed

The value to compare with

Tags
throws
InvalidQueryException

if used on a multi-valued property or with a non-literal/non-DateTime operand

Return values
ComparisonInterface

in()

Returns an "in" criterion used for matching objects against a query. It matches if the property's value is contained in the multivalued operand.

public in(string $propertyName, mixed $operand) : ComparisonInterface
Parameters
$propertyName : string

The name of the property to compare against

$operand : mixed

The value to compare with, multivalued

Tags
throws
InvalidQueryException

if used on a multi-valued property

Return values
ComparisonInterface

lessThan()

Returns a less than criterion used for matching objects against a query

public lessThan(string $propertyName, mixed $operand) : ComparisonInterface
Parameters
$propertyName : string

The name of the property to compare against

$operand : mixed

The value to compare with

Tags
throws
InvalidQueryException

if used on a multi-valued property or with a non-literal/non-DateTime operand

Return values
ComparisonInterface

lessThanOrEqual()

Returns a less or equal than criterion used for matching objects against a query

public lessThanOrEqual(string $propertyName, mixed $operand) : ComparisonInterface
Parameters
$propertyName : string

The name of the property to compare against

$operand : mixed

The value to compare with

Tags
throws
InvalidQueryException

if used on a multi-valued property or with a non-literal/non-DateTime operand

Return values
ComparisonInterface

like()

Returns a like criterion used for matching objects against a query.

public like(string $propertyName, string $operand) : ComparisonInterface

Matches if the property named $propertyName is like the $operand, using standard SQL wildcards.

Parameters
$propertyName : string

The name of the property to compare against

$operand : string

The value to compare with

Tags
throws
InvalidQueryException

if used on a non-string property

Return values
ComparisonInterface

setLimit()

Sets the maximum size of the result set to limit. Returns $this to allow for chaining (fluid interface).

public setLimit(int $limit) : QueryInterface
Parameters
$limit : int
Tags
phpstan-return

QueryInterface<T>

Return values
QueryInterface

setOffset()

Sets the start offset of the result set to offset. Returns $this to allow for chaining (fluid interface).

public setOffset(int $offset) : QueryInterface
Parameters
$offset : int
Tags
phpstan-return

QueryInterface<T>

Return values
QueryInterface

setOrderings()

Sets the property names to order the result by. Expected like this: array( 'foo' => \TYPO3\CMS\Extbase\Persistence\QueryInterface::ORDER_ASCENDING, 'bar' => \TYPO3\CMS\Extbase\Persistence\QueryInterface::ORDER_DESCENDING )

public setOrderings(array<string, string> $orderings) : QueryInterface
Parameters
$orderings : array<string, string>

The property names to order by

Tags
phpstan-return

QueryInterface<T>

Return values
QueryInterface

setType()

Set the type this query cares for.

public setType(string $type) : void
Parameters
$type : string
Tags
phpstan-param

class-string<T> $type


        
On this page

Search results