Skip to main content

Task

✅ A Task is something to do is the household with an associated value in points

type Task {
uid: String!
name: String!
group: Group!
value: Int
}

Fields

Task.uid ● String! non-null scalar

Unique identifier of the task

Task.name ● String! non-null scalar

Name of the task

Task.group ● Group! non-null scalar

Group of the task (an emoji)

Task.value ● Int scalar

Value of the task in points (a multiple of 5, between 5 and 100)

Returned By

tasks query

Member Of

Activity object ● Reminder object