Lists
Creating a List
mutation CreateList {
createList(
list: {
title: "Weekly Meeting"
code: "WM001"
numberingType: Sequential
date: "2025-03-18"
firstOccurrenceNumber: 1
building: "Main Office"
floor: "3rd Floor"
}
projectID: "6f838f30-5554-405c-b013-d030bef7e6a2"
) {
id
title
code
numberingType
}
}