chore(server): return parent id of sessions (#10638)

This commit is contained in:
darkskygit
2025-03-05 14:03:36 +00:00
parent 43ded6aa38
commit fbb6df3da8
7 changed files with 92 additions and 18 deletions
@@ -280,6 +280,9 @@ class CopilotSessionType {
@Field(() => ID)
id!: string;
@Field(() => ID, { nullable: true })
parentSessionId!: string | undefined;
@Field(() => String)
promptName!: string;
}