@quesmed/types 2.2.51 → 2.2.52
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -70,7 +70,7 @@ export declare type IAddFlaggedQuestionData = RestrictedData<graphqlNormalize &
|
|
|
70
70
|
*/
|
|
71
71
|
export declare const REMOVE_FLAGGED_QUESTION: import("@apollo/client").DocumentNode;
|
|
72
72
|
export interface IRemoveFlaggedQuestionVar {
|
|
73
|
-
|
|
73
|
+
questionId: Id;
|
|
74
74
|
}
|
|
75
75
|
export declare type IRemoveFlaggedQuestionData = RestrictedData<graphqlNormalize & IUserFlaggedQuestion, 'removeFlaggedQuestion'>;
|
|
76
76
|
/**
|
|
@@ -2423,9 +2423,9 @@ exports.ADD_FLAGGED_QUESTION = (0, client_1.gql) `
|
|
|
2423
2423
|
* removeFlaggedQuestion
|
|
2424
2424
|
*/
|
|
2425
2425
|
exports.REMOVE_FLAGGED_QUESTION = (0, client_1.gql) `
|
|
2426
|
-
mutation RemoveFlaggedQuestion($
|
|
2426
|
+
mutation RemoveFlaggedQuestion($questionId: Int!) {
|
|
2427
2427
|
restricted {
|
|
2428
|
-
removeFlaggedQuestion(
|
|
2428
|
+
removeFlaggedQuestion(questionId: $questionId) {
|
|
2429
2429
|
id
|
|
2430
2430
|
}
|
|
2431
2431
|
}
|
|
@@ -70,7 +70,7 @@ export declare type IAddFlaggedQuestionData = RestrictedData<graphqlNormalize &
|
|
|
70
70
|
*/
|
|
71
71
|
export declare const REMOVE_FLAGGED_QUESTION: import("@apollo/client").DocumentNode;
|
|
72
72
|
export interface IRemoveFlaggedQuestionVar {
|
|
73
|
-
|
|
73
|
+
questionId: Id;
|
|
74
74
|
}
|
|
75
75
|
export declare type IRemoveFlaggedQuestionData = RestrictedData<graphqlNormalize & IUserFlaggedQuestion, 'removeFlaggedQuestion'>;
|
|
76
76
|
/**
|
|
@@ -2418,9 +2418,9 @@ export const ADD_FLAGGED_QUESTION = gql `
|
|
|
2418
2418
|
* removeFlaggedQuestion
|
|
2419
2419
|
*/
|
|
2420
2420
|
export const REMOVE_FLAGGED_QUESTION = gql `
|
|
2421
|
-
mutation RemoveFlaggedQuestion($
|
|
2421
|
+
mutation RemoveFlaggedQuestion($questionId: Int!) {
|
|
2422
2422
|
restricted {
|
|
2423
|
-
removeFlaggedQuestion(
|
|
2423
|
+
removeFlaggedQuestion(questionId: $questionId) {
|
|
2424
2424
|
id
|
|
2425
2425
|
}
|
|
2426
2426
|
}
|