Tasks Query
This query will allow you to pull tasks from EverReal.
Filter options
query tasks(
$assigneeEmail: String
$reporterEmail: String
$status: TASK_STATUSES
$type: TASK_TYPES
$taskId: String
$companyId: String
) {
tasks(
input: {
paging: { take: 20, skip: 0 }
filter: {
assigneeEmail: $assigneeEmail
reporterEmail: $reporterEmail
status: $status
type: $type
taskId: $taskId
companyId: $companyId
}
}
) {
id
title
description
status
createdAt
links {
label
listingId
contactId
unitId
propertyId
}
assignee {
id
email
firstName
lastName
}
reporter {
id
email
firstName
lastName
}
comments {
id
comment
createdAt
user {
id
email
firstName
lastName
}
}
}
}
Sample types
Last updated