Я получил следующую схему и хочу сохранить одну запись данных Time
в UserTimerRecord.timeIds
.Каждая следующая запись данных Time
Я хочу вставить в UserTimeRecords.timeIds
type UserTimeRecord {
id: ID! @id
timeIds: [Time]
userId: ID! @userId
createdAt: DateTime @createdAt
}
type Time {
id: ID! @id
type: String!
time: DateTime! @createdAt
}
async setTime (_, { type }, context) {
const userId = getUserId(context)
const time = await prisma.createTime({ type })
if (type === 'start') {
await prisma.createUserTimeRecord({
userId,
timeIds: [time]
})
}
return time
}
}
Я получил следующую ошибку Reason: 'timeIds' Expected 'TimeCreateManyInput', found not an object.