This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// declare var ; | |
declare namespace Sails { | |
enum SortOption { | |
ASC, | |
DESC, | |
} | |
type SortOptions = keyof typeof SortOption; | |
interface Criteria { | |
or?: Criteria[]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Created Date: Monday, April 20th 2020, 3:03:54 pm | |
* Author: Johannes Pichler | |
* | |
* Copyright (c) 2020 Webpixels e.U. | |
*/ | |
let processAllRecords = require("waterline/lib/waterline/utils/query/process-all-records"); | |
export type RawResult = { |