Skip to content

Commit

Permalink
Fix sub-workflow filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
darh committed Oct 23, 2022
1 parent 5e08774 commit 5b2ba54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 2 additions & 2 deletions automation/workflow.cue
Expand Up @@ -63,14 +63,14 @@ workflow: {
filter: {
struct: {
workflow_id: { goType: "[]string", ident: "workflowID", storeIdent: "id" }
sub_workflow: { goType: "filter.State", storeIdent: "deleted_at" }
sub_workflow: { goType: "filter.State" }
deleted: { goType: "filter.State", storeIdent: "deleted_at" }
disabled: { goType: "filter.State", storeIdent: "enabled" }
}

query: ["handle"]
byValue: ["workflow_id"]
byNilState: ["deleted", "sub_workflow"]
byNilState: ["deleted"]
byFalseState: ["disabled"]
}

Expand Down
4 changes: 0 additions & 4 deletions store/adapters/rdbms/filters.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5b2ba54

Please sign in to comment.