Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EASI-3510/graph schema upgrade #2431

Merged
merged 27 commits into from
Feb 14, 2024
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
8d67793
addressed type assertions
Jan 23, 2024
c3b0001
Merge branch 'main' of https://github.com/CMSgov/easi-app into EASI-3…
Jan 24, 2024
a5c2d7a
upgrade package, update tests
Jan 24, 2024
efcface
Merge branch 'main' of https://github.com/CMSgov/easi-app into EASI-3…
Jan 25, 2024
a73eb10
Merge branch 'main' of https://github.com/CMSgov/easi-app into EASI-3…
Jan 25, 2024
a59b198
Merge branch 'main' of https://github.com/CMSgov/easi-app into EASI-3…
Jan 29, 2024
98a4d57
Merge branch 'main' of https://github.com/CMSgov/easi-app into EASI-3…
Jan 30, 2024
7829c0d
Merge branch 'main' of https://github.com/CMSgov/easi-app into EASI-3…
Jan 31, 2024
b03bbbe
Merge branch 'main' of https://github.com/CMSgov/easi-app into EASI-3…
Feb 1, 2024
720d5ba
generate
Feb 1, 2024
f90973c
update errors for specific location
Feb 1, 2024
3f633c9
remove call to `String()`
Feb 1, 2024
224ed91
Merge branch 'main' into EASI-3510/graph_schema_upgrade
ClayBenson94 Feb 6, 2024
b6923c5
Merge branch 'main' of https://github.com/CMSgov/easi-app into EASI-3…
samoddball Feb 12, 2024
d2aeb95
Merge branch 'main' of https://github.com/CMSgov/easi-app into EASI-3…
samoddball Feb 12, 2024
4c05163
Merge branch 'main' of https://github.com/CMSgov/easi-app into EASI-3…
samoddball Feb 12, 2024
c08c31c
use bool ptr
samoddball Feb 13, 2024
19e64e3
clean up conditional
samoddball Feb 13, 2024
43796be
remove ununsed endpoint and related store method
samoddball Feb 13, 2024
26e1cf3
forgiving bool allowance
samoddball Feb 13, 2024
36a6f85
use verb for type
samoddball Feb 13, 2024
c7e7bb0
remove note
samoddball Feb 14, 2024
9cbf82f
upgrade gqlgen to v0.17.43
samoddball Feb 14, 2024
844514f
run gql gen
samoddball Feb 14, 2024
9a95400
remove dependabot ignores
samoddball Feb 14, 2024
399c507
Merge branch 'main' into EASI-3510/graph_schema_upgrade
samoddball Feb 14, 2024
af8f01d
Merge branch 'main' of https://github.com/CMSgov/easi-app into EASI-3…
samoddball Feb 14, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 0 additions & 21 deletions EASI.postman_collection.json
Original file line number Diff line number Diff line change
Expand Up @@ -2085,27 +2085,6 @@
}
},
"response": []
},
{
"name": "Update TRB Admin Note (no category-specific fields)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "graphql",
"graphql": {
"query": "mutation UpdateNote($input: UpdateTRBAdminNoteInput!) {\r\n updateTRBAdminNote(input: $input) {\r\n id\r\n category\r\n noteText\r\n }\r\n}",
"variables": "{\r\n \"input\": {\r\n \"id\": \"71fb32c1-52f5-47a1-8350-c7349caf2770\",\r\n \"category\": \"INITIAL_REQUEST_FORM\",\r\n \"noteText\": \"test note 1 - edit1\"\r\n }\r\n}"
}
},
"url": {
"raw": "{{url}}",
"host": [
"{{url}}"
]
}
},
"response": []
}
]
}
Expand Down
4 changes: 2 additions & 2 deletions cmd/devdata/trb_request.go
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ func (s *seederConfig) seedTRBWithForm(ctx context.Context, trbName *string, isS
}

_, err = s.updateTRBRequestForm(ctx, map[string]interface{}{
"trbRequestId": trb.ID.String(),
"trbRequestId": trb.ID,
"isSubmitted": isSubmitted,
"component": "Center for Medicare",
"needsAssistanceWith": "Something is wrong with my system",
Expand Down Expand Up @@ -582,7 +582,7 @@ func (s *seederConfig) addAdviceLetter(ctx context.Context, trb *models.TRBReque
}

adviceLetterChanges := map[string]interface{}{
"trbRequestId": trb.ID.String(),
"trbRequestId": trb.ID,
"meetingSummary": "Talked about stuff",
"isFollowupRecommended": isFollowUpRequested,
}
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/cmsgov/easi-app
go 1.21

require (
github.com/99designs/gqlgen v0.17.39
github.com/99designs/gqlgen v0.17.40
samoddball marked this conversation as resolved.
Show resolved Hide resolved
github.com/alecthomas/jsonschema v0.0.0-20211228220459-151e3c21f49d
github.com/aws/aws-sdk-go v1.50.10
github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
github.com/99designs/gqlgen v0.17.39 h1:wPTAyc2fqVjAWT5DsJ21k/lLudgnXzURwbsjVNegFpU=
github.com/99designs/gqlgen v0.17.39/go.mod h1:b62q1USk82GYIVjC60h02YguAZLqYZtvWml8KkhJps4=
github.com/99designs/gqlgen v0.17.40 h1:/l8JcEVQ93wqIfmH9VS1jsAkwm6eAF1NwQn3N+SDqBY=
github.com/99designs/gqlgen v0.17.40/go.mod h1:b62q1USk82GYIVjC60h02YguAZLqYZtvWml8KkhJps4=
github.com/BurntSushi/toml v1.2.1 h1:9F2/+DoOYIOksmaJFPw1tGFy1eDnIJXg+UHjuD8lTak=
github.com/BurntSushi/toml v1.2.1/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ=
github.com/agnivade/levenshtein v1.1.1 h1:QY8M92nrzkmr798gCo3kmMyqXFzdQVpxLlGPRBij0P8=
Expand Down
Loading
Loading