- [x] findOne/findManyCalendarEvents / findOne/findManyMessages - add
integration tests
- [ ] ~~fix typing~~ - coming in new PR >
[Issue](https://github.com/twentyhq/core-team-issues/issues/976)
This commit is contained in:
Etienne
2025-05-16 11:38:34 +02:00
committed by GitHub
parent dc4bcc3049
commit 160eb23454
7 changed files with 185 additions and 1 deletions

View File

@ -0,0 +1,9 @@
export const CALENDAR_EVENT_GQL_FIELDS = `
id
title
description
endsAt
startsAt
createdAt
updatedAt
deletedAt`;

View File

@ -0,0 +1,7 @@
export const MESSAGE_GQL_FIELDS = `
id
subject
text
createdAt
updatedAt
deletedAt`;