OBJECT

CompletedOnboardingItem

An object with information about how an onboarding item was completed

link GraphQL Schema definition

  • type CompletedOnboardingItem {
  • # The URL to go to to edit the attached object
  • attached_object_edit_url: String
  • # The most relevant date to display
  • date_to_show: String
  • # The unique identifier of the item
  • id: ID!
  • # The id of the object that completed the onboarding item
  • item_id: String
  • # The type of item that was completed
  • item_type: String
  • # The onboarding item that was completed
  • onboarding_item: OnboardingItem
  • # The ID of the onboarding item
  • onboarding_item_id: String
  • # Set to true if the user skipped this
  • skipped: Boolean!
  • # The completed (client)
  • user: User
  • # The ID of the completer (client)
  • user_id: String
  • # The URL to view
  • view_url: String
  • }