ManyToManyConnection.js 228 B

1234567891011
  1. class ManyToManyConnection {
  2. constructor(node, relation) {
  3. this.node = node;
  4. this.refNode = null;
  5. this.relation = relation;
  6. relation.omitExtraProps([node.model]);
  7. }
  8. }
  9. module.exports = ManyToManyConnection;