-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Convert GetModelSummary * Convert ArchiveModelPlan * convert CreateModelPlan * Convert GetAllSingleModelPlan and GetAllModelData * convert CreateModelPlanReply * Convert GetCurrentUser * Convert GetFavorites * Convert GetModelPlan * Convert GetModelPlanBase * fixing errors due to conversions * fixing some type errors * Convert GetModelPlans * Covnert GetUserInfo and SerachOktaUser * Covnert GetUserInfo and SerachOktaUser * Convert Add and Delete PlanFavorite * Convert Add and Delete PlanFavorite * Convert Lock and Unlock TaskListSection * Convert TaskListSubscriptions and GetTaskListSubscriptions * temp * pairing session * pairing with Patrick * convert DeleteModelPlanDocuments * Convert GetModelPlanDocument * correct document for the test * update test * corrected the import statement to fix e2e test
- Loading branch information
Showing
81 changed files
with
2,471 additions
and
372 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...ries/Documents/DeleteModelPlanDocument.ts → ...oGQL/Documents/DeleteModelPlanDocument.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import { gql } from '@apollo/client'; | ||
|
||
export default gql` | ||
export default gql(/* GraphQL */ ` | ||
mutation DeleteModelPlanDocument($id: UUID!) { | ||
deletePlanDocument(id: $id) | ||
} | ||
`; | ||
`); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/queries/Favorite/AddPlanFavorite.ts → ...gql/apolloGQL/Favorite/AddPlanFavorite.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
import { gql } from '@apollo/client'; | ||
|
||
export default gql` | ||
export default gql(/* GraphQL */ ` | ||
mutation AddPlanFavorite($modelPlanID: UUID!) { | ||
addPlanFavorite(modelPlanID: $modelPlanID) { | ||
modelPlanID | ||
userID | ||
} | ||
} | ||
`; | ||
`); |
4 changes: 2 additions & 2 deletions
4
src/queries/Favorite/DeletePlanFavorite.ts → .../apolloGQL/Favorite/DeletePlanFavorite.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
import { gql } from '@apollo/client'; | ||
|
||
export default gql` | ||
export default gql(/* GraphQL */ ` | ||
mutation DeletePlanFavorite($modelPlanID: UUID!) { | ||
deletePlanFavorite(modelPlanID: $modelPlanID) { | ||
modelPlanID | ||
userID | ||
} | ||
} | ||
`; | ||
`); |
4 changes: 2 additions & 2 deletions
4
src/queries/ArchiveModelPlan.ts → ...l/apolloGQL/ModelPlan/ArchiveModelPlan.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import { gql } from '@apollo/client'; | ||
|
||
export default gql` | ||
export default gql(/* GraphQL */ ` | ||
mutation ArchiveModelPlan($id: UUID!, $archived: Boolean!) { | ||
updateModelPlan(id: $id, changes: { archived: $archived }) { | ||
id | ||
} | ||
} | ||
`; | ||
`); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.