Skip to main content

Overview

The AskFredThreadSummary type provides a lightweight representation of an AskFred conversation thread, ideal for displaying thread lists without the overhead of loading all messages. This type is returned when querying multiple threads.

Fields

id
String!
required
Unique identifier for the thread
title
String!
required
Title of the thread, typically derived from the first question asked
transcript_id
String
ID of the specific meeting/transcript this thread is associated with (if applicable)
user_id
String!
required
ID of the user who created the thread
created_at
String!
required
ISO 8601 timestamp when the thread was created

Example

{
  "id": "thread_abc123",
  "title": "Q4 Planning Meeting Action Items",
  "transcript_id": "transcript_xyz789",
  "user_id": "user_123",
  "created_at": "2024-03-15T10:30:00Z"
}

Example Query

query GetThreadsSummary {
  askfred_threads {
    id
    title
    transcript_id
    created_at
  }
}