Skip to content

Commit

Permalink
Updated docs version
Browse files Browse the repository at this point in the history
  • Loading branch information
paustint committed Jun 21, 2022
1 parent 2b7606e commit f7b9def
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
14 changes: 7 additions & 7 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": "^4.4.1",
"soql-parser-js": "^4.5.0",
"tailwindcss": "^1.2.0"
},
"devDependencies": {
Expand Down
4 changes: 3 additions & 1 deletion docs/src/resources/sample-queries-json.json
Original file line number Diff line number Diff line change
Expand Up @@ -119,5 +119,7 @@
"SELECT State_Abbr_c FROM Contact WHERE State_Abbr_c = 'MI' OR State_Abbr_c = 'km'",
"SELECT State_Abbr_c FROM Contact WHERE State_Abbr_c = 'KM'",
"SELECT State_Abbr_c FROM Contact WHERE State_Abbr_c IN ('mi', 'KM')",
"SELECT LeadSource, COUNT(Name) FROM Lead GROUP BY LeadSource HAVING COUNT(Name) > 100 AND LeadSource > 'km'"
"SELECT LeadSource, COUNT(Name) FROM Lead GROUP BY LeadSource HAVING COUNT(Name) > 100 AND LeadSource > 'km'",
"SELECT Id FROM Account WITH USER_MODE",
"SELECT Id FROM Account WITH SYSTEM_MODE"
]

0 comments on commit f7b9def

Please sign in to comment.