Skip to content

Commit

Permalink
add mccrsid field to HealthPlanPackage schema and relevant mutations …
Browse files Browse the repository at this point in the history
…and queries
  • Loading branch information
pearl-truss committed Oct 4, 2023
1 parent 178292f commit 31a8ebf
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions services/app-graphql/src/mutations/updateContract.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ mutation updateContract($input: UpdateContractInput!) {
pkg {
id
stateCode
mccrsID
state {
code
name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ query fetchHealthPlanPackage($input: FetchHealthPlanPackageInput!) {
}
status
initiallySubmittedAt
mccrsID
revisions {
node {
id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ query indexHealthPlanPackages {
node {
id
stateCode
mccrsID
state {
code
name
Expand Down
2 changes: 2 additions & 0 deletions services/app-graphql/src/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -554,6 +554,8 @@ type HealthPlanPackage {
stateCode: String!
"Fuller state data for the submitting state"
state: State!
"MC-CRS record number provided by CMS user (e.g. 1234)"
mccrsID: String
"""
Array of revisions for this package. Each revision represents a single submission
for the package and contains the full data from when it was submitted
Expand Down

0 comments on commit 31a8ebf

Please sign in to comment.