refql
Version:
A Node.js and Deno library for composing and running SQL queries.
9 lines (8 loc) • 407 B
JavaScript
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const RefProp_1 = __importDefault(require("./RefProp"));
const HasMany = (as, tableId, input = {}) => (0, RefProp_1.default)(as, tableId, "HasMany", input, false);
exports.default = HasMany;
;