Skip to content

Commit 69ea908

Browse files
committed
add woql document
1 parent 04a2acd commit 69ea908

File tree

5 files changed

+8
-3
lines changed

5 files changed

+8
-3
lines changed

docsify

Whitespace-only changes.

lib/query/woqlDocument.js

Whitespace-only changes.

lib/woql.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -873,6 +873,8 @@ WOQL.immediately = function(subquery) {
873873
* @param {string | number} countVarName - variable or integer count
874874
* @param {WOQLQuery} [subquery]
875875
* @returns {WOQLQuery} A WOQLQuery object containing the count sub Query
876+
* @example
877+
* WOQL.count("v:count").triple("v:Person","type","scm:Person")
876878
*/
877879
WOQL.count = function(countVarName, subquery) {
878880
return new WOQLQuery().count(countVarName, subquery)

marked

Whitespace-only changes.

package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@
2020
"author": "kevin@terminusdb.com",
2121
"license": "Apache-2.0",
2222
"dependencies": {
23-
"axios": "^0.21.1"
23+
"axios": "^0.21.1",
24+
"y18n": ">=4.0.1",
25+
"sockjs": ">=0.3.20",
26+
"ssri": ">=6.0.2"
2427
},
2528
"devDependencies": {
2629
"@babel/core": "^7.13.10",
@@ -49,8 +52,8 @@
4952
"sinon": "^9.2.4",
5053
"typescript": "^4.2.3",
5154
"uglify-js": "^3.13.2",
52-
"webpack": "^4.46.0",
53-
"webpack-cli": "^3.3.11",
55+
"webpack": "^5.36.2",
56+
"webpack-cli": "^4.6.0",
5457
"webpack-dev-server": "^3.11.2"
5558
},
5659
"scripts": {

0 commit comments

Comments
 (0)