1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- import db from '../db'
- import { DataTypes } from 'sequelize'
- const Member = db.define('member', {
- id: {
- type: DataTypes.INTEGER,
- primaryKey: true,
- },
- createdAt: DataTypes.INTEGER,
- account: DataTypes.STRING,
- handle: DataTypes.STRING,
- about: DataTypes.TEXT,
- })
- Member.findAllWithIncludes = function () {
- return this.findAll({
- include: [
- {
- model: db.models.post,
- required: false,
- include: [{ model: db.models.thread }],
- },
- { model: db.models.thread, include: [{ model: db.models.category }] },
- { model: db.models.proposal, include: [{ association: 'votes' }] },
- { model: db.models.account },
- {
- association: 'terms',
- include: [
- {
- association: 'votes',
- include: [
- {
- model: db.models.proposal,
- include: [{ association: 'author' }],
- },
- ],
- },
- { association: 'voters', include: [{ model: db.models.member }] },
- ],
- },
- {
- association: 'votes',
- include: [
- {
- model: db.models.consul,
- include: [{ model: db.models.member }],
- },
- ],
- },
- ],
- })
- }
- Member.findByIdWithIncludes = function (id: number, args?: { where: any }) {
- return this.findByPk(id, {
- ...args,
- })
- }
- Member.findWithIncludes = function (args: { where: any }) {
- return this.findAll({
- ...args,
- include: [
- { model: db.models.post, include: [{ model: db.models.thread }] },
- { model: db.models.proposal, include: [{ association: 'votes' }] },
- { model: db.models.account },
- {
- association: 'terms',
- include: [
- {
- association: 'votes',
- include: [
- {
- model: db.models.proposal,
- include: [{ association: 'author' }],
- },
- ],
- },
- { association: 'voters', include: [{ model: db.models.member }] },
- ],
- },
- {
- association: 'votes',
- include: [
- {
- model: db.models.consul,
- include: [{ model: db.models.member }],
- },
- ],
- },
- ],
- })
- }
- export default Member
|