-
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
* removed old GetIsCollaborator and its types * add new GetIsCollaborator and updated modelaccesswrapper * Convert GetModelCollaborators * convert GetModelPlanCollaborator * Convert CreateModelPlanCollaborator * Convert CreateModelPlanCollaborator and DeleteModelPlanCollaborator * Convert UpdateNDA --------- Co-authored-by: Clay Benson <[email protected]>
- Loading branch information
1 parent
d5daed6
commit 9e07d33
Showing
27 changed files
with
422 additions
and
119 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
4 changes: 2 additions & 2 deletions
4
...ueries/Collaborators/GetIsCollaborator.ts → ...lloGQL/Collaborators/GetIsCollaborator.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 */ ` | ||
query GetIsCollaborator($id: UUID!) { | ||
modelPlan(id: $id) { | ||
id | ||
isCollaborator | ||
} | ||
} | ||
`; | ||
`); |
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
src/queries/NDA/UpdateNDA.ts → src/gql/apolloGQL/NDA/UpdateNDA.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 UpdateNDA { | ||
agreeToNDA(agree: true) { | ||
agreed | ||
agreedDts | ||
} | ||
} | ||
`; | ||
`); |
Oops, something went wrong.