Add task priority field

Introduce a rank-style priority on tasks, scoped by
(organization_id, state). New tasks auto-assign the next
priority. Reordering uses the same CTE-based algorithm as
trust center references and compliance external URLs.
Exposed through GraphQL, MCP, and the PRIORITY order field.

Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
This commit is contained in:
Sacha Al Himdani
2026-03-26 19:05:13 +01:00
parent 72a48ff6b1
commit 257cbcf826
10 changed files with 234 additions and 51 deletions

View File

@@ -14,16 +14,33 @@
package coredata
import "fmt"
type (
TaskOrderField string
)
const (
TaskOrderFieldPriority TaskOrderField = "PRIORITY"
TaskOrderFieldCreatedAt TaskOrderField = "CREATED_AT"
)
func (p TaskOrderField) Column() string {
return string(p)
switch p {
case TaskOrderFieldPriority:
return "priority"
case TaskOrderFieldCreatedAt:
return "created_at"
}
panic(fmt.Sprintf("unsupported order by: %s", p))
}
func (p TaskOrderField) IsValid() bool {
switch p {
case TaskOrderFieldPriority, TaskOrderFieldCreatedAt:
return true
}
return false
}
func (p TaskOrderField) String() string {
@@ -36,5 +53,8 @@ func (p TaskOrderField) MarshalText() ([]byte, error) {
func (p *TaskOrderField) UnmarshalText(text []byte) error {
*p = TaskOrderField(text)
if !p.IsValid() {
return fmt.Errorf("%s is not a valid TaskOrderField", string(text))
}
return nil
}