Query.apex icon indicating copy to clipboard operation
Query.apex copied to clipboard

A dynamic SOQL and SOSL query builder on Salesforce.com platform

Results 33 Query.apex issues
Sort by recently updated
recently updated
newest added

- Fix test for `isCalculated` FieldSetting - Fix tests failing in Enterprise scratch orgs Addresses #51 - Tested in default Enterprise edition and Developer edition scratch orgs - Code coverage...

Consider example: ``` Query.enforceGlobalSecurity(); Query q = new Query(Account.SObjectType) .selectFields(new String[]{'Name'}) .lookup('Id', new Query(Contact.SObjectType) .selectField(Contact.AccountId)); System.debug(q.toQueryString()); q.run(); ``` Which creates query ``` SELECT name FROM Account WHERE (Id IN (SELECT...

Bumps [moment](https://github.com/moment/moment) from 2.22.2 to 2.29.4. Changelog Sourced from moment's changelog. 2.29.4 Release Jul 6, 2022 #6015 [bugfix] Fix ReDoS in preprocessRFC2822 regex 2.29.3 Full changelog Release Apr 17, 2022...

dependencies

Unit tests are dependent on `QuickText` so `QueryTest` will fail to compile if QuickText is not enabled.

Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.5.1 to 1.14.8. Commits 3d81dc3 Release version 1.14.8 of the npm package. 62e546a Drop confidential headers across schemes. 2ede36d Release version 1.14.7 of the npm package. 8b347cb...

dependencies

Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.5 to 1.0.7. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=path-parse&package-manager=npm_and_yarn&previous-version=1.0.5&new-version=1.0.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Currently if you try to add `Query.selectField('FORMAT(Amount) Amount')` the Query formating fails on: `checkFieldLevelSecurity(Schema.SObjectType objType, String fieldPath)` because it tries to get the whole String from fieldMap. `FunctionFieldTuple`s are supported...

Bumps [codemirror](https://github.com/codemirror/CodeMirror) from 5.39.2 to 5.61.0. Release notes Sourced from codemirror's releases. 5.61.0 Version 5.61.0 Bug fixes Improve support for being in a shadow DOM in contenteditable mode. Prevent line...

dependencies

Bumps [hosted-git-info](https://github.com/npm/hosted-git-info) from 2.7.1 to 2.8.9. Changelog Sourced from hosted-git-info's changelog. 2.8.9 (2021-04-07) Bug Fixes backport regex fix from #76 (29adfe5), closes #84 2.8.8 (2020-02-29) Bug Fixes #61 & #65...

dependencies

It would be rather useful to re-query db by a set of Ids without explicitly declaring type required - library should infer the types of record itself and also handle...