OBJECT

Segment

Segment Record

link GraphQL Schema definition

  • type Segment {
  • # The view the segment defaults to, null when created by user
  • applicationView: String
  • # URL of an automation that references the segment
  • automationUrl: String
  • # When the segment was created
  • createdAt: ISO8601DateTime!
  • # Is this segment a default or user created
  • default: Boolean!
  • # The set of filters which make up a segment
  • filterSet: FilterSet!
  • # ID of the segment
  • id: ID!
  • # Name of the segment
  • name: String!
  • # permission of the Segment
  • permission: Permission!
  • # The resource to which the filter set applies
  • resource: FilterableResource!
  • # When the segment was last updated
  • updatedAt: ISO8601DateTime!
  • # The user which the segment belongs to
  • user: User
  • }