MCPcopy Create free account
hub / github.com/ShipSecAI/studio / listAfterSequence

Method listAfterSequence

backend/src/trace/trace.repository.ts:121–132  ·  view source on GitHub ↗
(
    runId: string,
    sequence: number,
    organizationId?: string | null,
  )

Source from the content-addressed store, hash-verified

119 }
120
121 async listAfterSequence(
122 runId: string,
123 sequence: number,
124 organizationId?: string | null,
125 ): Promise<WorkflowTraceRecord[]> {
126 const runFilter = this.buildRunFilter(runId, organizationId);
127 return this.db
128 .select()
129 .from(workflowTracesTable)
130 .where(and(runFilter, gt(workflowTracesTable.sequence, sequence)))
131 .orderBy(workflowTracesTable.sequence);
132 }
133
134 async countByType(
135 runId: string,

Callers 1

listSinceMethod · 0.45

Calls 2

buildRunFilterMethod · 0.95
fromMethod · 0.80

Tested by

no test coverage detected