Skip to content

Commit

Permalink
Merge pull request #15 from openimis/feature/CM-726
Browse files Browse the repository at this point in the history
CM-726: Added filters for workflow
  • Loading branch information
jdolkowski committed Mar 12, 2024
2 parents abf35c6 + 2ecbc9b commit 95552ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workflow/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
class Query:
workflow = graphene.Field(
graphene.List(WorkflowGQLType),
name=graphene.String(),
group=graphene.String(),
name=graphene.Argument(graphene.String, required=False),
group=graphene.Argument(graphene.String, required=False),
)

def resolve_workflow(self, info, **kwargs):
Expand Down

0 comments on commit 95552ab

Please sign in to comment.