You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/plan-builder-generated.js
+26-20Lines changed: 26 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -3250,7 +3250,7 @@ class JsonExpr {
3250
3250
constructor() {
3251
3251
}
3252
3252
/**
3253
-
* Creates a (JSON) array, which is like a sequence of values, but allows for nesting. Provides a client interface to a server function. See {@link http://docs.marklogic.com/json.array|json.array}
3253
+
* Creates a (JSON) array, which is like a sequence of values, but allows for nesting. Provides a client interface to a server function. See {@link http://docs.marklogic.com/json:array|json:array}
return new types.JsonArray('json', 'array', checkedArgs);
3263
3263
}
3264
3264
/**
3265
-
* Returns the size of the array. Provides a client interface to a server function. See {@link http://docs.marklogic.com/json.arraySize|json.arraySize}
3265
+
* Returns the size of the array. Provides a client interface to a server function. See {@link http://docs.marklogic.com/json:array-size|json:array-size}
3266
3266
* @method planBuilder.json#arraySize
3267
3267
* @since 2.1.1
3268
3268
* @param { JsonArray } [array] - An array.
@@ -3274,7 +3274,7 @@ arraySize(...args) {
3274
3274
return new types.XsUnsignedLong('json', 'array-size', checkedArgs);
3275
3275
}
3276
3276
/**
3277
-
* Returns the array values as an XQuery sequence. Provides a client interface to a server function. See {@link http://docs.marklogic.com/json.arrayValues|json.arrayValues}
3277
+
* Returns the array values as an XQuery sequence. Provides a client interface to a server function. See {@link http://docs.marklogic.com/json:array-values|json:array-values}
3278
3278
* @method planBuilder.json#arrayValues
3279
3279
* @since 2.1.1
3280
3280
* @param { JsonArray } [array] - An array.
@@ -3291,7 +3291,7 @@ arrayValues(...args) {
3291
3291
3292
3292
}
3293
3293
/**
3294
-
* Creates a JSON object, which is a kind of map with a fixed and ordered set of keys. Provides a client interface to a server function. See {@link http://docs.marklogic.com/json.object|json.object}
3294
+
* Creates a JSON object, which is a kind of map with a fixed and ordered set of keys. Provides a client interface to a server function. See {@link http://docs.marklogic.com/json:object|json:object}
return new types.JsonObject('json', 'object', checkedArgs);
3304
3304
}
3305
3305
/**
3306
-
* Creates a JSON object. Provides a client interface to a server function. See {@link http://docs.marklogic.com/json.objectDefine|json.objectDefine}
3306
+
* Creates a JSON object. Provides a client interface to a server function. See {@link http://docs.marklogic.com/json:object-define|json:object-define}
3307
3307
* @method planBuilder.json#objectDefine
3308
3308
* @since 2.1.1
3309
3309
* @param { XsString } [keys] - The sequence of keys in this object.
@@ -3315,7 +3315,7 @@ objectDefine(...args) {
3315
3315
return new types.JsonObject('json', 'object-define', checkedArgs);
3316
3316
}
3317
3317
/**
3318
-
* Extract a subarray from an array, producing a new array. The second and third arguments to this function operate similarly to those of fn:subsequence for XQuery sequences. Provides a client interface to a server function. See {@link http://docs.marklogic.com/json.subarray|json.subarray}
3318
+
* Extract a subarray from an array, producing a new array. The second and third arguments to this function operate similarly to those of fn:subsequence for XQuery sequences. Provides a client interface to a server function. See {@link http://docs.marklogic.com/json:subarray|json:subarray}
3319
3319
* @method planBuilder.json#subarray
3320
3320
* @since 2.1.1
3321
3321
* @param { JsonArray } [array] - An array.
@@ -3333,7 +3333,7 @@ subarray(...args) {
3333
3333
3334
3334
}
3335
3335
/**
3336
-
* Constructs a json:array from a sequence of items. Provides a client interface to a server function. See {@link http://docs.marklogic.com/json.toArray|json.toArray}
3336
+
* Constructs a json:array from a sequence of items. Provides a client interface to a server function. See {@link http://docs.marklogic.com/json:to-array|json:to-array}
3337
3337
* @method planBuilder.json#toArray
3338
3338
* @since 2.1.1
3339
3339
* @param { Item } [items] - The items to be used as elements in the constructed array.
@@ -3355,7 +3355,7 @@ class MapExpr {
3355
3355
constructor() {
3356
3356
}
3357
3357
/**
3358
-
* Returns true if the key exists in the map. Provides a client interface to a server function. See {@link http://docs.marklogic.com/map.contains|map.contains}
3358
+
* Returns true if the key exists in the map. Provides a client interface to a server function. See {@link http://docs.marklogic.com/map:contains|map:contains}
3359
3359
* @method planBuilder.map#contains
3360
3360
* @since 2.1.1
3361
3361
* @param { MapMap } [map] - A map.
@@ -3372,7 +3372,7 @@ contains(...args) {
3372
3372
3373
3373
}
3374
3374
/**
3375
-
* Returns the number of keys used in the map. Provides a client interface to a server function. See {@link http://docs.marklogic.com/map.count|map.count}
3375
+
* Returns the number of keys used in the map. Provides a client interface to a server function. See {@link http://docs.marklogic.com/map:count|map:count}
3376
3376
* @method planBuilder.map#count
3377
3377
* @since 2.1.1
3378
3378
* @param { MapMap } [map] - A map.
@@ -3384,7 +3384,7 @@ count(...args) {
3384
3384
return new types.XsUnsignedInt('map', 'count', checkedArgs);
3385
3385
}
3386
3386
/**
3387
-
* Constructs a new map with a single entry consisting of the key and value specified as arguments. This is particularly helpful when used as part of an argument to map:new(). Provides a client interface to a server function. See {@link http://docs.marklogic.com/map.entry|map.entry}
3387
+
* Constructs a new map with a single entry consisting of the key and value specified as arguments. This is particularly helpful when used as part of an argument to map:new(). Provides a client interface to a server function. See {@link http://docs.marklogic.com/map:entry|map:entry}
3388
3388
* @method planBuilder.map#entry
3389
3389
* @since 2.1.1
3390
3390
* @param { XsString } [key] - The map key.
@@ -3401,7 +3401,7 @@ entry(...args) {
3401
3401
3402
3402
}
3403
3403
/**
3404
-
* Get a value from a map. Provides a client interface to a server function. See {@link http://docs.marklogic.com/map.get|map.get}
3404
+
* Get a value from a map. Provides a client interface to a server function. See {@link http://docs.marklogic.com/map:get|map:get}
3405
3405
* @method planBuilder.map#get
3406
3406
* @since 2.1.1
3407
3407
* @param { MapMap } [map] - A map.
@@ -3418,7 +3418,7 @@ get(...args) {
3418
3418
3419
3419
}
3420
3420
/**
3421
-
* Get the keys used in the map. Provides a client interface to a server function. See {@link http://docs.marklogic.com/map.keys|map.keys}
3421
+
* Get the keys used in the map. Provides a client interface to a server function. See {@link http://docs.marklogic.com/map:keys|map:keys}
3422
3422
* @method planBuilder.map#keys
3423
3423
* @since 2.1.1
3424
3424
* @param { MapMap } [map] - A map.
@@ -3430,7 +3430,7 @@ keys(...args) {
3430
3430
return new types.XsString('map', 'keys', checkedArgs);
3431
3431
}
3432
3432
/**
3433
-
* Creates a map. Provides a client interface to a server function. See {@link http://docs.marklogic.com/map.map|map.map}
3433
+
* Creates a map. Provides a client interface to a server function. See {@link http://docs.marklogic.com/map:map|map:map}
return new types.SemIri('sem', 'iri', checkedArgs);
4145
4145
}
4146
4146
/**
4147
-
* Provides a client interface to a server function.
4147
+
* Converts an IRI value to a QName value. Provides a client interface to a server function.
4148
4148
* @method planBuilder.sem#iriToQName
4149
4149
* @since 2.1.1
4150
4150
* @param { XsString } [arg1] -
@@ -4233,7 +4233,7 @@ langMatches(...args) {
4233
4233
4234
4234
}
4235
4235
/**
4236
-
* Provides a client interface to a server function.
4236
+
* Converts a QName value to an IRI value. Provides a client interface to a server function.
4237
4237
* @method planBuilder.sem#QNameToIri
4238
4238
* @since 2.1.1
4239
4239
* @param { XsQName } [arg1] -
@@ -4466,7 +4466,7 @@ collatedString(...args) {
4466
4466
4467
4467
}
4468
4468
/**
4469
-
* Returns a specified date with the specified number interval (signed integer) added to a specified datepart of that date Provides a client interface to a server function. See {@link http://docs.marklogic.com/sql.dateadd|sql.dateadd}
4469
+
* Returns a specified date with the specified number interval (signed integer) added to a specified datepart of that date Provides a client interface to a server function. See {@link http://docs.marklogic.com/sql:dateadd|sql:dateadd}
4470
4470
* @method planBuilder.sql#dateadd
4471
4471
* @since 2.1.1
4472
4472
* @param { XsString } [datepart] - Is the part of date where the number will be added. The following table lists all valid datepart arguments. User-defined variable equivalents are not valid. The return data type is the data type of the date argument. Options: datepart parameter abbreviation includes: "year","yyyy","yy" The year part of the date "quarter","qq","q" The quarter part of the date "month","mm","m" The month part of the date "dayofyear","dy","y" The day of the year from the date "day","dd","d" The day of the month from the date "week","wk","ww" The week of the year from the date "weekday","dw" The day of the week from the date "hour","hh" The hour of the day from the date "minute","mi","n" The minute of the hour from the date "second","ss","s" The second of the minute from the date "millisecond","ms" The millisecond of the minute from the date "microsecond","msc" The microsecond of the minute from the date "nanosecond","ns" The nanosecond of the minute from the date
@@ -4484,7 +4484,7 @@ dateadd(...args) {
4484
4484
4485
4485
}
4486
4486
/**
4487
-
* Returns the count (signed integer) of the specified datepart boundaries crossed between the specified startdate and enddate. Provides a client interface to a server function. See {@link http://docs.marklogic.com/sql.datediff|sql.datediff}
4487
+
* Returns the count (signed integer) of the specified datepart boundaries crossed between the specified startdate and enddate. Provides a client interface to a server function. See {@link http://docs.marklogic.com/sql:datediff|sql:datediff}
4488
4488
* @method planBuilder.sql#datediff
4489
4489
* @since 2.1.1
4490
4490
* @param { XsString } [datepart] - Is the part of startdate and enddate that specifies the type of boundary crossed. The following table lists all valid datepart arguments. User-defined variable equivalents are not valid. Options: datepart parameter abbreviation includes: "year","yyyy","yy" The year part of the date "quarter","qq","q" The quarter part of the date "month","mm","m" The month part of the date "dayofyear","dy","y" The day of the year from the date "day","dd","d" The day of the month from the date "week","wk","ww" The week of the year from the date "weekday","dw" The day of the week from the date "hour","hh" The hour of the day from the date "minute","mi","n" The minute of the hour from the date "second","ss","s" The second of the minute from the date "millisecond","ms" The millisecond of the minute from the date "microsecond","msc" The microsecond of the minute from the date "nanosecond","ns" The nanosecond of the minute from the date
@@ -4502,7 +4502,7 @@ datediff(...args) {
4502
4502
4503
4503
}
4504
4504
/**
4505
-
* Returns an integer that represents the specified datepart of the specified date. Provides a client interface to a server function. See {@link http://docs.marklogic.com/sql.datepart|sql.datepart}
4505
+
* Returns an integer that represents the specified datepart of the specified date. Provides a client interface to a server function. See {@link http://docs.marklogic.com/sql:datepart|sql:datepart}
4506
4506
* @method planBuilder.sql#datepart
4507
4507
* @since 2.1.1
4508
4508
* @param { XsString } [datepart] - The part of date that to be returned. Options: datepart parameter abbreviation includes: "year","yyyy","yy" The year part of the date "quarter","qq","q" The quarter part of the date "month","mm","m" The month part of the date "dayofyear","dy","y" The day of the year from the date "day","dd","d" The day of the month from the date "week","wk","ww" The week of the year from the date "weekday","dw" The day of the week from the date "hour","hh" The hour of the day from the date "minute","mi","n" The minute of the hour from the date "second","ss","s" The second of the minute from the date "millisecond","ms" The millisecond of the minute from the date "microsecond","msc" The microsecond of the minute from the date "nanosecond","ns" The nanosecond of the minute from the date "TZoffset","tz" The timezone offset from the date
@@ -4794,7 +4794,13 @@ right(...args) {
4794
4794
return new types.XsString('sql', 'right', checkedArgs);
4795
4795
4796
4796
}
4797
-
/** @ignore */
4797
+
/**
4798
+
* Constructs a row identifier from the string form of the temporary identifier assigned to a row during processing. Provides a client interface to a server function.
0 commit comments