Skip to content

Commit

Permalink
Updated docs version
Browse files Browse the repository at this point in the history
  • Loading branch information
paustint committed Apr 14, 2021
1 parent 042c782 commit d881d41
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 17 deletions.
54 changes: 39 additions & 15 deletions docs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"gh-pages": "^2.2.0",
"highlight.js": "^9.18.1",
"prismjs": "^1.19.0",
"soql-parser-js": "^3.2.0",
"soql-parser-js": "^4.0.0",
"tailwindcss": "^1.2.0"
},
"devDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion docs/src/resources/sample-queries-json.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,5 +108,6 @@
"SELECT WEEK_IN_YEAR(CloseDate), SUM(amount) FROM Opportunity GROUP BY WEEK_IN_YEAR(CloseDate) ORDER BY WEEK_IN_YEAR(CloseDate) DESC NULLS LAST, SUM(amount) ASC NULLS LAST",
"SELECT FIELDS(ALL) FROM Account",
"SELECT FIELDS(CUSTOM), FIELDS(STANDARD) FROM Account",
"SELECT Id, (SELECT FIELDS(ALL) FROM Contacts) FROM Account"
"SELECT Id, (SELECT FIELDS(ALL) FROM Contacts) FROM Account",
"SELECT UserId, CALENDAR_MONTH(LoginTime) month FROM LoginHistory WHERE NetworkId != NULL GROUP BY UserId, CALENDAR_MONTH(LoginTime)"
]

0 comments on commit d881d41

Please sign in to comment.