Skip to content

Commit

Permalink
update to greater than or equal to min salary
Browse files Browse the repository at this point in the history
  • Loading branch information
esizer committed Dec 4, 2024
1 parent 89818b7 commit eedbdf4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/graphql/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1414,7 +1414,7 @@ input CreateClassificationInput {
@rules(apply: ["numeric", "min:0"])
maxSalary: Int
@rename(attribute: "max_salary")
@rules(apply: ["numeric", "min:0", "gt:minSalary"])
@rules(apply: ["numeric", "min:0", "gte:minSalary"])
}

input ClassificationBelongsToMany {
Expand All @@ -1439,7 +1439,7 @@ input UpdateClassificationInput {
@rules(apply: ["numeric", "min:0"])
maxSalary: Int
@rename(attribute: "max_salary")
@rules(apply: ["numeric", "min:0", "gt:minSalary"])
@rules(apply: ["numeric", "min:0", "gte:minSalary"])
}

input UpdatePoolCandidateStatusInput {
Expand Down

0 comments on commit eedbdf4

Please sign in to comment.