refql
Version:
A Node.js and Deno library for composing and running SQL queries.
9 lines (8 loc) • 425 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 BelongsToMany = (as, tableId, input = {}) => (0, RefProp_1.default)(as, tableId, "BelongsToMany", input, false);
exports.default = BelongsToMany;
;