OBJECT
Priority
link GraphQL Schema definition
- type Priority {
- # The unique identifier for a priority.
- String! :
- # The id of the plan the priority belongs to.
- String :
- # The title of the priority. This title was set by the creator of the priority.
- String :
- # The description of the priority. This description was set by the creator of the
- # priority.
- String :
- # The date the creator of the priority set as the deadline to complete the
- # priority.
- # The priority can have a set deadline or a time range.
- DateTime :
- # If a priority is set to have a time range instead of a deadline, this field
- # gives the start of that range.
- # It can be anything from days to years.
- String :
- # If a priority is set to have a time range instead of a deadline, this field
- # gives the end of that range.
- # It can be anything from days to years.
- String :
- # The id of the user who created the priority.
- String :
- # The date and time that the priority was created.
- DateTime :
- # A list of channel group ids that are associated to a priority.
- String] : [
- # Metrics associated with this priority.
- Metric :
- }
link Require by
- PriorityConnectionA type that describes the return type for the priority query. Prioritys can then be accessed via nodes or edges.
- PriorityEdgeA type that describes an edge in the PriorityConnection. Essentially, a PriorityEdge is a wrapper object for Priority. The only addition is a cursor placed on each record that can be used in subsequent queries to fetch Priority records after 'cursor'.