Без сервера: Сбой: Person.relationMappings.articles: Невозможно найти модуль '/Article', используя sls framework и objection.js

Я пытаюсь использовать Objection.js с AWS Lambda с помощью платформы SLS. В данный момент я получаю сообщение об ошибке "Без сервера: Ошибка: Person.relationMappings.articles: Не удается найти модуль" / Статья "".

Полный репо: https://github.com/edlgg/Veritas-Back

Соответствующий код:

// handler.ts
import { APIGatewayEvent, Context, Handler, Callback } from 'aws-lambda'
import User from '../src/models/User'

export const hello : Handler = async (event : APIGatewayEvent, context : Context, cb : Callback) => {
  const users = await User.query().findById(1).eager('commentReactions')
  const response = {
    statusCode: 200,
    body: JSON.stringify({
      message: users
    })
  }
  cb(null, response)
}

//User model
import { Model, RelationMappings } from 'objection'
import CommentReaction from './CommentReaction'

const Knex = require('knex')
const connection = require('../knexfile')
const knexConnection = Knex(connection.production)
Model.knex(knexConnection)

const fs = require('fs');
fs.readdirSync(__dirname).forEach((file: any) => {
  console.log(file);
})
export default class Person extends Model {
  readonly id!: number
  firstName?: string
  lastName?: string

  commentReactions?: CommentReaction[]

  static tableName = 'Users'

  static jsonSchema = {
    type: 'object',
    required: [
      'id',
      'fistName',
      'lastName'
    ],
    properties: {
      id: { type: 'integer' },
      firstName: { type: 'string', minLength: 1, maxLength: 255 },
      lastName: { type: 'string', minLength: 1, maxLength: 255 }
    }
  }

  static modelPaths = [__dirname]

  static relationMappings: RelationMappings = {
    commentReactions: {
      relation: Model.HasManyRelation,
      modelClass: __dirname + 'CommentReaction',
      join: {
        from: 'Users.id',
        to: 'CommentReactions.userId'
      }
    }
  }
}

Полный репо: https://github.com/edlgg/Veritas-Back

0 ответов

Другие вопросы по тегам