Skip to content

Commit 2023311

Browse files
Docs fixes (#2170)
datastore: fix broken links logging: fix broken links storage: fix broken links language: fix docs spanner: fix formatting in docs
1 parent 3124b00 commit 2023311

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

  • handwritten/nodejs-datastore/src

handwritten/nodejs-datastore/src/query.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ function Query(scope, namespace, kinds) {
7474
*
7575
* *To filter by ancestors, see {module:datastore/query#hasAncestor}.*
7676
*
77-
* @resource [Datastore Filters]{@link https://cloud.google.com/datastore/docs/concepts/queries#Datastore_Filters}
77+
* @resource [Datastore Filters]{@link https://cloud.google.com/datastore/docs/concepts/queries#datastore-property-filter-nodejs}
7878
*
7979
* @param {string} property - The field name.
8080
* @param {string=} operator - Operator (=, <, >, <=, >=). Default: `=`
@@ -119,7 +119,7 @@ Query.prototype.filter = function(property, operator, value) {
119119
/**
120120
* Filter a query by ancestors.
121121
*
122-
* @resource [Datastore Ancestor Filters]{@link https://cloud.google.com/datastore/docs/concepts/queries#Datastore_Ancestor_filters}
122+
* @resource [Datastore Ancestor Filters]{@link https://cloud.google.com/datastore/docs/concepts/queries#datastore-ancestor-query-nodejs}
123123
*
124124
* @param {Key} key - Key object to filter by.
125125
* @return {module:datastore/query}
@@ -136,7 +136,7 @@ Query.prototype.hasAncestor = function(key) {
136136
* Sort the results by a property name in ascending or descending order. By
137137
* default, an ascending sort order will be used.
138138
*
139-
* @resource [Datastore Sort Orders]{@link https://cloud.google.com/datastore/docs/concepts/queries#Datastore_Sort_orders}
139+
* @resource [Datastore Sort Orders]{@link https://cloud.google.com/datastore/docs/concepts/queries#datastore-ascending-sort-nodejs}
140140
*
141141
* @param {string} property - The property to order by.
142142
* @param {object=} options - Options object.
@@ -200,7 +200,7 @@ Query.prototype.select = function(fieldNames) {
200200
/**
201201
* Set a starting cursor to a query.
202202
*
203-
* @resource [Query Cursors]{@link https://cloud.google.com/datastore/docs/concepts/queries#Datastore_Query_cursors}
203+
* @resource [Query Cursors]{@link https://cloud.google.com/datastore/docs/concepts/queries#cursors_limits_and_offsets}
204204
*
205205
* @param {string} cursorToken - The starting cursor token.
206206
* @return {module:datastore/query}
@@ -238,7 +238,7 @@ Query.prototype.end = function(end) {
238238
/**
239239
* Set a limit on a query.
240240
*
241-
* @resource [Query Limits]{@link https://cloud.google.com/datastore/docs/concepts/queries#Datastore_Retrieving_results}
241+
* @resource [Query Limits]{@link https://cloud.google.com/datastore/docs/concepts/queries#datastore-limit-nodejs}
242242
*
243243
* @param {number} n - The number of results to limit the query to.
244244
* @return {module:datastore/query}
@@ -255,7 +255,7 @@ Query.prototype.limit = function(n) {
255255
/**
256256
* Set an offset on a query.
257257
*
258-
* @resource [Query Offsets]{@link https://cloud.google.com/datastore/docs/concepts/queries#Datastore_Retrieving_results}
258+
* @resource [Query Offsets]{@link https://cloud.google.com/datastore/docs/concepts/queries#datastore-limit-nodejs}
259259
*
260260
* @param {number} n - The offset to start from after the start cursor.
261261
* @return {module:datastore/query}

0 commit comments

Comments
 (0)