createActionItem
talawa-api • Docs
talawa-api / resolvers/Mutation/createActionItem / createActionItem
Variable: createActionItem
> const
createActionItem: MutationResolvers
["createActionItem"
]
Creates a new action item and assigns it to a user.
This function performs several checks:
- Verifies if the current user exists.
- Ensures that the current user has an associated app user profile.
- Checks if the assignee exists.
- Validates if the action item category exists and is not disabled.
- If the action item is related to an event, checks if the event exists and whether the current user is an admin of that event.
- Verifies if the current user is an admin of the organization or a superadmin.
Param
The parent object for the mutation (not used in this function).
Param
The arguments provided with the request, including:
data
: An object containing:assigneeId
: The ID of the user to whom the action item is assigned.assigneeType
: The type of the assignee (EventVolunteer or EventVolunteerGroup).preCompletionNotes
: Notes to be added before the action item is completed.dueDate
: The due date for the action item.eventId
(optional): The ID of the event associated with the action item.actionItemCategoryId
: The ID of the action item category.
Param
The context of the entire application, including user information and other context-specific data.
Returns
A promise that resolves to the created action item object.