Skip to content

Commit

Permalink
add non-nullable marker (#8854)
Browse files Browse the repository at this point in the history
  • Loading branch information
vd1992 authored Dec 22, 2023
1 parent f6b0ce8 commit d636e6c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion api/graphql/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ type Query {
@find
@guard
@can(ability: "view", query: true)
poolCandidates(includeIds: [ID] @in(key: "id")): [PoolCandidate]!
poolCandidates(includeIds: [ID]! @in(key: "id")): [PoolCandidate]!
@all(scopes: ["notDraft"])
@guard
@can(ability: "view", resolved: true)
Expand Down
2 changes: 1 addition & 1 deletion api/storage/app/lighthouse-schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type Query {
publishedPools(closingAfter: DateTime, publishingGroup: PublishingGroup): [Pool!]!
pools: [Pool]!
poolCandidate(id: UUID!): PoolCandidate
poolCandidates(includeIds: [ID]): [PoolCandidate]! @deprecated(reason: "poolCandidates is deprecated. Use poolCandidatesPaginated instead. Remove in #7656.")
poolCandidates(includeIds: [ID]!): [PoolCandidate]! @deprecated(reason: "poolCandidates is deprecated. Use poolCandidatesPaginated instead. Remove in #7656.")
countPoolCandidatesByPool(where: ApplicantFilterInput): [CandidateSearchPoolResult!]!
classification(id: UUID!): Classification
classifications: [Classification]!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ query getPoolCandidate($id: UUID!) {
}
}

query GetSelectedPoolCandidates($ids: [ID]) {
query GetSelectedPoolCandidates($ids: [ID]!) {
poolCandidates(includeIds: $ids) {
...selectedPoolCandidates
}
Expand Down

0 comments on commit d636e6c

Please sign in to comment.