@elyx-code/project-logic-tree 0.0.6278 → 0.0.6280

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,5 @@
1
1
  import { IActionOutputMapTransfer, IProjectReference, IValueDescriptorTransfer, ISearchReference, ISearchTransfer } from '../../..';
2
2
 
3
- export declare const testQuery = "SELECT \n\tEmployee.identifier AS EmployeeID, \n\tEmployee.startDate AS startDate, \n\tUser.identifier AS userID, \n\tEmployee.manager,\n\tEmployee.department AS department_a,\n\tProductSub.product_identifier AS ProductID,\n\tRandomTable.random_value AS RandomValue\nFROM Employee \nINNER JOIN User ON Employee.manager = User.identifier \nLEFT JOIN (\n\tSELECT identifier AS product_identifier, name \n\tFROM Product \n\tWHERE name LIKE 'a%'\n) AS ProductSub ON ProductSub.product_identifier = 'a'\nCROSS JOIN (SELECT 'useless_value' AS random_value) AS RandomTable\nCROSS JOIN (SELECT 'another_useless_value') AS AnotherRandomTable \nWHERE \n\tEmployee.department = 'Sales' \n\tAND Employee.startDate >= '2020-01-01' \n\tAND Employee.manager IS NOT NULL \n\tOR (Employee.manager = User.identifier AND User.identifier IS NOT NULL) \nORDER BY Employee.startDate DESC, Employee.department ASC \nLIMIT 10 OFFSET 0;";
4
3
  export declare const findCompaniesWithMultipleEmployeesAndBankAccountSearchParentRef: IProjectReference;
5
4
  export declare const findCompaniesWithMultipleEmployeesAndBankAccountSearchCompaniesListOutputDeclarationParentRef: ISearchReference;
6
5
  export declare const findCompaniesWithMultipleEmployeesAndBankAccountSearchCompaniesListOutputDeclaration: IValueDescriptorTransfer;