-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
finish feature/OPENIMIS-75_fetch_status_from_mutation_logs
Check mutation's status in mutation logs
- Loading branch information
Showing
45 changed files
with
2,812 additions
and
1,459 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
10 changes: 10 additions & 0 deletions
10
app/src/main/graphql/org.openimis.imispolicies/CheckMutation.graphql
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
query CheckMutation($clientMutationId: String) { | ||
mutationLogs(clientMutationId:$clientMutationId, orderBy:["-requestDateTime"]) { | ||
edges { | ||
node { | ||
status | ||
error | ||
} | ||
} | ||
} | ||
} |
5 changes: 0 additions & 5 deletions
5
app/src/main/graphql/org.openimis.imispolicies/CreateFamily.graphql
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
app/src/main/graphql/org.openimis.imispolicies/CreateInsuree.graphql
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
app/src/main/graphql/org.openimis.imispolicies/CreatePolicy.graphql
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
app/src/main/graphql/org.openimis.imispolicies/CreatePremium.graphql
This file was deleted.
Oops, something went wrong.
5 changes: 5 additions & 0 deletions
5
app/src/main/graphql/org.openimis.imispolicies/MobileEnrolment.graphql
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
mutation MobileEnrolment($input: MobileEnrollmentMutationInput!) { | ||
mobileEnrollment(input: $input) { | ||
clientMutationId | ||
} | ||
} |
4 changes: 2 additions & 2 deletions
4
app/src/main/graphql/org.openimis.imispolicies/RenewPolicy.graphql
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
5 changes: 0 additions & 5 deletions
5
app/src/main/graphql/org.openimis.imispolicies/UpdateFamily.graphql
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
app/src/main/graphql/org.openimis.imispolicies/UpdateInsuree.graphql
This file was deleted.
Oops, something went wrong.
2,352 changes: 1,504 additions & 848 deletions
2,352
app/src/main/graphql/org.openimis.imispolicies/schema.graphqls
Large diffs are not rendered by default.
Oops, something went wrong.
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.