We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de3ad0f commit 2b7df71Copy full SHA for 2b7df71
test/TestCases.ts
@@ -1511,5 +1511,29 @@ export const testCases: TestCase[] = [
1511
sObject: 'Lead',
1512
},
1513
1514
+ {
1515
+ testCase: 33,
1516
+ soql: `SELECT Id, Name FROM Account WHERE Name != 'foo'`,
1517
+ soqlComposed: `SELECT Id, Name FROM Account WHERE Name != 'foo'`,
1518
+ output: {
1519
+ fields: [
1520
1521
+ text: 'Id',
1522
+ },
1523
1524
+ text: 'Name',
1525
1526
+ ],
1527
+ subqueries: [],
1528
+ sObject: 'Account',
1529
+ where: {
1530
+ left: {
1531
+ field: 'Name',
1532
+ operator: '!=',
1533
+ value: "'foo'",
1534
1535
1536
1537
1538
];
1539
export default testCases;
0 commit comments