How to use the cormo.HasMany function in cormo

To help you get started, we’ve selected a few cormo examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github croquiscom / cormo / packages / graphql / src / decorators.ts View on Github external
export function HasMany(options: IHasManyBasicOptions) {
  const c_options = {
    foreign_key: options.foreign_key,
    integrity: options.integrity,
    type: options.type,
  };
  const c = cormo.HasMany(c_options);
  return (target: cormo.BaseModel, propertyKey: string) => {
    c(target, propertyKey);
  };
}

cormo

ORM framework for Node.js

MIT
Latest version published 11 days ago

Package Health Score

73 / 100
Full package analysis