Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions ai-agent-conversation.graphqls
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@ input ConversationListCondition {
service: ServiceCondition!
# Optional. Only the conversations pushed by this sender.
instance: InstanceCondition
# Optional. Only this conversation, by id: a storage lookup, so the round budget is spent on it alone.
conversation: ID
# Optional. Only the conversations whose title contains this text, case-insensitively. The title is the newest
# round's, so the match runs after folding and cannot widen the rounds read.
title: String
# The rounds are read newest first, at most this many, then folded to one row per conversation.
# Default 1000. A page therefore holds at most this many rows.
limit: Int
Expand Down