Cloud Datastore V1 Client - Class Query (1.17.1)

Reference documentation and code samples for the Cloud Datastore V1 Client class Query.

A query for entities.

Generated from protobuf message google.datastore.v1.Query

Methods

__construct

Constructor.

Parameters
NameDescription
data array

Optional. Data for populating the Message object.

↳ projection array<Google\Cloud\Datastore\V1\Projection>

The projection to return. Defaults to returning all properties.

↳ kind array<Google\Cloud\Datastore\V1\KindExpression>

The kinds to query (if empty, returns entities of all kinds). Currently at most 1 kind may be specified.

↳ filter Google\Cloud\Datastore\V1\Filter

The filter to apply.

↳ order array<Google\Cloud\Datastore\V1\PropertyOrder>

The order to apply to the query results (if empty, order is unspecified).

↳ distinct_on array<Google\Cloud\Datastore\V1\PropertyReference>

The properties to make distinct. The query results will contain the first result for each distinct combination of values for the given properties (if empty, all results are returned).

↳ start_cursor string

A starting point for the query results. Query cursors are returned in query result batches and can only be used to continue the same query.

↳ end_cursor string

An ending point for the query results. Query cursors are returned in query result batches and can only be used to limit the same query.

↳ offset int

The number of results to skip. Applies before limit, but after all other constraints. Optional. Must be >= 0 if specified.

↳ limit Google\Protobuf\Int32Value

The maximum number of results to return. Applies after all other constraints. Optional. Unspecified is interpreted as no limit. Must be >= 0 if specified.

getProjection

The projection to return. Defaults to returning all properties.

Generated from protobuf field repeated .google.datastore.v1.Projection projection = 2;

Returns
TypeDescription
Google\Protobuf\Internal\RepeatedField

setProjection

The projection to return. Defaults to returning all properties.

Generated from protobuf field repeated .google.datastore.v1.Projection projection = 2;

Parameter
NameDescription
var array<Google\Cloud\Datastore\V1\Projection>
Returns
TypeDescription
$this

getKind

The kinds to query (if empty, returns entities of all kinds).

Currently at most 1 kind may be specified.

Generated from protobuf field repeated .google.datastore.v1.KindExpression kind = 3;

Returns
TypeDescription
Google\Protobuf\Internal\RepeatedField

setKind

The kinds to query (if empty, returns entities of all kinds).

Currently at most 1 kind may be specified.

Generated from protobuf field repeated .google.datastore.v1.KindExpression kind = 3;

Parameter
NameDescription
var array<Google\Cloud\Datastore\V1\KindExpression>
Returns
TypeDescription
$this

getFilter

The filter to apply.

Generated from protobuf field .google.datastore.v1.Filter filter = 4;

Returns
TypeDescription
Google\Cloud\Datastore\V1\Filter|null

hasFilter

clearFilter

setFilter

The filter to apply.

Generated from protobuf field .google.datastore.v1.Filter filter = 4;

Parameter
NameDescription
var Google\Cloud\Datastore\V1\Filter
Returns
TypeDescription
$this

getOrder

The order to apply to the query results (if empty, order is unspecified).

Generated from protobuf field repeated .google.datastore.v1.PropertyOrder order = 5;

Returns
TypeDescription
Google\Protobuf\Internal\RepeatedField

setOrder

The order to apply to the query results (if empty, order is unspecified).

Generated from protobuf field repeated .google.datastore.v1.PropertyOrder order = 5;

Parameter
NameDescription
var array<Google\Cloud\Datastore\V1\PropertyOrder>
Returns
TypeDescription
$this

getDistinctOn

The properties to make distinct. The query results will contain the first result for each distinct combination of values for the given properties (if empty, all results are returned).

Generated from protobuf field repeated .google.datastore.v1.PropertyReference distinct_on = 6;

Returns
TypeDescription
Google\Protobuf\Internal\RepeatedField

setDistinctOn

The properties to make distinct. The query results will contain the first result for each distinct combination of values for the given properties (if empty, all results are returned).

Generated from protobuf field repeated .google.datastore.v1.PropertyReference distinct_on = 6;

Parameter
NameDescription
var array<Google\Cloud\Datastore\V1\PropertyReference>
Returns
TypeDescription
$this

getStartCursor

A starting point for the query results. Query cursors are returned in query result batches and can only be used to continue the same query.

Generated from protobuf field bytes start_cursor = 7;

Returns
TypeDescription
string

setStartCursor

A starting point for the query results. Query cursors are returned in query result batches and can only be used to continue the same query.

Generated from protobuf field bytes start_cursor = 7;

Parameter
NameDescription
var string
Returns
TypeDescription
$this

getEndCursor

An ending point for the query results. Query cursors are returned in query result batches and can only be used to limit the same query.

Generated from protobuf field bytes end_cursor = 8;

Returns
TypeDescription
string

setEndCursor

An ending point for the query results. Query cursors are returned in query result batches and can only be used to limit the same query.

Generated from protobuf field bytes end_cursor = 8;

Parameter
NameDescription
var string
Returns
TypeDescription
$this

getOffset

The number of results to skip. Applies before limit, but after all other constraints. Optional. Must be >= 0 if specified.

Generated from protobuf field int32 offset = 10;

Returns
TypeDescription
int

setOffset

The number of results to skip. Applies before limit, but after all other constraints. Optional. Must be >= 0 if specified.

Generated from protobuf field int32 offset = 10;

Parameter
NameDescription
var int
Returns
TypeDescription
$this

getLimit

The maximum number of results to return. Applies after all other constraints. Optional.

Unspecified is interpreted as no limit. Must be >= 0 if specified.

Generated from protobuf field .google.protobuf.Int32Value limit = 12;

Returns
TypeDescription
Google\Protobuf\Int32Value|null

hasLimit

clearLimit

getLimitValue

Returns the unboxed value from getLimit()

The maximum number of results to return. Applies after all other constraints. Optional. Unspecified is interpreted as no limit. Must be >= 0 if specified.

Generated from protobuf field .google.protobuf.Int32Value limit = 12;

Returns
TypeDescription
int|null

setLimit

The maximum number of results to return. Applies after all other constraints. Optional.

Unspecified is interpreted as no limit. Must be >= 0 if specified.

Generated from protobuf field .google.protobuf.Int32Value limit = 12;

Parameter
NameDescription
var Google\Protobuf\Int32Value
Returns
TypeDescription
$this

setLimitValue

Sets the field by wrapping a primitive type in a Google\Protobuf\Int32Value object.

The maximum number of results to return. Applies after all other constraints. Optional. Unspecified is interpreted as no limit. Must be >= 0 if specified.

Generated from protobuf field .google.protobuf.Int32Value limit = 12;

Parameter
NameDescription
var int|null
Returns
TypeDescription
$this