OBJECT

Activity

A single activity

link GraphQL Schema definition

  • type Activity {
  • # The unique activity ID.
  • id: Int!
  • # The activity name.
  • name: String!
  • # The rule applied to the activity's calculated total time.
  • time_modifier: Int!
  • # If the activity is billable.
  • is_billable: Boolean!
  • # Active state of the activity.
  • is_active: Boolean!
  • # Whether an activity is used by Assignar system internally.
  • is_system: Boolean!
  • # The sort order priority.
  • sort_order: String
  • # Identifier for this activity in external systems.
  • external_id: String
  • # The rule applied to the activity.
  • rule: String! @deprecated( reason: "Use `time_modifier` instead." )
  • # The time this activity was deleted.
  • deleted_at: DateTime
  • }