|
|
|
|
@ -14,6 +14,12 @@ export type Scalars = {
|
|
|
|
|
Boolean: { input: boolean; output: boolean; }
|
|
|
|
|
Int: { input: number; output: number; }
|
|
|
|
|
Float: { input: number; output: number; }
|
|
|
|
|
/**
|
|
|
|
|
* The `Date` scalar type represents a Date
|
|
|
|
|
* value as specified by
|
|
|
|
|
* [iso8601](https://en.wikipedia.org/wiki/ISO_8601).
|
|
|
|
|
*/
|
|
|
|
|
Date: { input: any; output: any; }
|
|
|
|
|
/**
|
|
|
|
|
* The `DateTime` scalar type represents a DateTime
|
|
|
|
|
* value as specified by
|
|
|
|
|
@ -77,6 +83,7 @@ export type AssignmentCompletionObjectType = {
|
|
|
|
|
assignment_user: UserType;
|
|
|
|
|
completion_data?: Maybe<Scalars['GenericScalar']['output']>;
|
|
|
|
|
completion_status: AssignmentAssignmentCompletionCompletionStatusChoices;
|
|
|
|
|
course_session: CourseSessionObjectType;
|
|
|
|
|
created_at: Scalars['DateTime']['output'];
|
|
|
|
|
edoniq_extended_time_flag: Scalars['Boolean']['output'];
|
|
|
|
|
evaluation_max_points?: Maybe<Scalars['Float']['output']>;
|
|
|
|
|
@ -137,7 +144,7 @@ export type AssignmentObjectTypeCompletionArgs = {
|
|
|
|
|
|
|
|
|
|
export type AttendanceCourseUserMutation = {
|
|
|
|
|
__typename?: 'AttendanceCourseUserMutation';
|
|
|
|
|
course_session_attendance_course?: Maybe<CourseSessionAttendanceCourseType>;
|
|
|
|
|
course_session_attendance_course?: Maybe<CourseSessionAttendanceCourseObjectType>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type AttendanceUserInputType = {
|
|
|
|
|
@ -145,13 +152,8 @@ export type AttendanceUserInputType = {
|
|
|
|
|
user_id: Scalars['UUID']['input'];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** An enumeration. */
|
|
|
|
|
export type AttendanceUserStatus =
|
|
|
|
|
| 'ABSENT'
|
|
|
|
|
| 'PRESENT';
|
|
|
|
|
|
|
|
|
|
export type AttendanceUserType = {
|
|
|
|
|
__typename?: 'AttendanceUserType';
|
|
|
|
|
export type AttendanceUserObjectType = {
|
|
|
|
|
__typename?: 'AttendanceUserObjectType';
|
|
|
|
|
email?: Maybe<Scalars['String']['output']>;
|
|
|
|
|
first_name?: Maybe<Scalars['String']['output']>;
|
|
|
|
|
last_name?: Maybe<Scalars['String']['output']>;
|
|
|
|
|
@ -159,6 +161,11 @@ export type AttendanceUserType = {
|
|
|
|
|
user_id: Scalars['UUID']['output'];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** An enumeration. */
|
|
|
|
|
export type AttendanceUserStatus =
|
|
|
|
|
| 'ABSENT'
|
|
|
|
|
| 'PRESENT';
|
|
|
|
|
|
|
|
|
|
export type CircleObjectType = CoursePageInterface & {
|
|
|
|
|
__typename?: 'CircleObjectType';
|
|
|
|
|
circle?: Maybe<CircleObjectType>;
|
|
|
|
|
@ -255,19 +262,93 @@ export type CoursePageInterface = {
|
|
|
|
|
translation_key?: Maybe<Scalars['String']['output']>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type CourseSessionAttendanceCourseType = {
|
|
|
|
|
__typename?: 'CourseSessionAttendanceCourseType';
|
|
|
|
|
attendance_user_list?: Maybe<Array<Maybe<AttendanceUserType>>>;
|
|
|
|
|
export type CourseSessionAssignmentObjectType = {
|
|
|
|
|
__typename?: 'CourseSessionAssignmentObjectType';
|
|
|
|
|
course_session_id?: Maybe<Scalars['ID']['output']>;
|
|
|
|
|
due_date_id?: Maybe<Scalars['ID']['output']>;
|
|
|
|
|
end?: Maybe<Scalars['DateTime']['output']>;
|
|
|
|
|
evaluation_deadline?: Maybe<DueDateObjectType>;
|
|
|
|
|
id: Scalars['ID']['output'];
|
|
|
|
|
learning_content?: Maybe<LearningContentAssignmentObjectType>;
|
|
|
|
|
learning_content_id?: Maybe<Scalars['ID']['output']>;
|
|
|
|
|
submission_deadline?: Maybe<DueDateObjectType>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type CourseSessionAttendanceCourseObjectType = {
|
|
|
|
|
__typename?: 'CourseSessionAttendanceCourseObjectType';
|
|
|
|
|
attendance_user_list?: Maybe<Array<Maybe<AttendanceUserObjectType>>>;
|
|
|
|
|
course_session_id?: Maybe<Scalars['ID']['output']>;
|
|
|
|
|
due_date?: Maybe<DueDateObjectType>;
|
|
|
|
|
id: Scalars['ID']['output'];
|
|
|
|
|
learning_content?: Maybe<LearningContentAttendanceCourseObjectType>;
|
|
|
|
|
learning_content_id?: Maybe<Scalars['ID']['output']>;
|
|
|
|
|
location: Scalars['String']['output'];
|
|
|
|
|
start?: Maybe<Scalars['DateTime']['output']>;
|
|
|
|
|
trainer: Scalars['String']['output'];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type CourseSessionEdoniqTestObjectType = {
|
|
|
|
|
__typename?: 'CourseSessionEdoniqTestObjectType';
|
|
|
|
|
course_session_id?: Maybe<Scalars['ID']['output']>;
|
|
|
|
|
deadline?: Maybe<DueDateObjectType>;
|
|
|
|
|
id: Scalars['ID']['output'];
|
|
|
|
|
learning_content?: Maybe<LearningContentEdoniqTestObjectType>;
|
|
|
|
|
learning_content_id?: Maybe<Scalars['ID']['output']>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type CourseSessionObjectType = {
|
|
|
|
|
__typename?: 'CourseSessionObjectType';
|
|
|
|
|
assignments?: Maybe<Array<Maybe<CourseSessionAssignmentObjectType>>>;
|
|
|
|
|
attendance_courses?: Maybe<Array<Maybe<CourseSessionAttendanceCourseObjectType>>>;
|
|
|
|
|
course: CourseObjectType;
|
|
|
|
|
created_at: Scalars['DateTime']['output'];
|
|
|
|
|
edoniq_tests?: Maybe<Array<Maybe<CourseSessionEdoniqTestObjectType>>>;
|
|
|
|
|
end_date?: Maybe<Scalars['Date']['output']>;
|
|
|
|
|
id: Scalars['ID']['output'];
|
|
|
|
|
start_date?: Maybe<Scalars['Date']['output']>;
|
|
|
|
|
title: Scalars['String']['output'];
|
|
|
|
|
updated_at: Scalars['DateTime']['output'];
|
|
|
|
|
users?: Maybe<Array<Maybe<CourseSessionUserObjectsType>>>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type CourseSessionUserExpertCircleType = {
|
|
|
|
|
__typename?: 'CourseSessionUserExpertCircleType';
|
|
|
|
|
id?: Maybe<Scalars['ID']['output']>;
|
|
|
|
|
slug?: Maybe<Scalars['String']['output']>;
|
|
|
|
|
title?: Maybe<Scalars['String']['output']>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type CourseSessionUserObjectsType = {
|
|
|
|
|
__typename?: 'CourseSessionUserObjectsType';
|
|
|
|
|
avatar_url?: Maybe<Scalars['String']['output']>;
|
|
|
|
|
circles?: Maybe<Array<Maybe<CourseSessionUserExpertCircleType>>>;
|
|
|
|
|
email?: Maybe<Scalars['String']['output']>;
|
|
|
|
|
first_name?: Maybe<Scalars['String']['output']>;
|
|
|
|
|
id: Scalars['UUID']['output'];
|
|
|
|
|
last_name?: Maybe<Scalars['String']['output']>;
|
|
|
|
|
role?: Maybe<Scalars['String']['output']>;
|
|
|
|
|
user_id?: Maybe<Scalars['UUID']['output']>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type DueDateObjectType = {
|
|
|
|
|
__typename?: 'DueDateObjectType';
|
|
|
|
|
/** Translation Key aus dem Frontend */
|
|
|
|
|
assignment_type_translation_key: Scalars['String']['output'];
|
|
|
|
|
course_session: CourseSessionObjectType;
|
|
|
|
|
/** Translation Key aus dem Frontend */
|
|
|
|
|
date_type_translation_key: Scalars['String']['output'];
|
|
|
|
|
/** Enddatum ist optional */
|
|
|
|
|
end?: Maybe<Scalars['DateTime']['output']>;
|
|
|
|
|
id: Scalars['ID']['output'];
|
|
|
|
|
/** Nur aktivieren, wenn man die Felder manuell überschreiben will */
|
|
|
|
|
manual_override_fields: Scalars['Boolean']['output'];
|
|
|
|
|
/** Startdatum ist Pflicht */
|
|
|
|
|
start?: Maybe<Scalars['DateTime']['output']>;
|
|
|
|
|
/** Überschreibt den Untertitel bei `assignment_type_translation_key` und `date_type_translation_key` */
|
|
|
|
|
subtitle: Scalars['String']['output'];
|
|
|
|
|
/** Title wird standarmässig vom LearningContent übernommen */
|
|
|
|
|
title: Scalars['String']['output'];
|
|
|
|
|
/** URL wird vom LearningContent übernommen (sichtbar für Member/Teilnehmer) */
|
|
|
|
|
url: Scalars['String']['output'];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type ErrorType = {
|
|
|
|
|
__typename?: 'ErrorType';
|
|
|
|
|
field: Scalars['String']['output'];
|
|
|
|
|
@ -331,6 +412,23 @@ export type LearningContentDocumentListObjectType = LearningContentInterface & {
|
|
|
|
|
translation_key?: Maybe<Scalars['String']['output']>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type LearningContentEdoniqTestObjectType = LearningContentInterface & {
|
|
|
|
|
__typename?: 'LearningContentEdoniqTestObjectType';
|
|
|
|
|
circle?: Maybe<CircleObjectType>;
|
|
|
|
|
content?: Maybe<Scalars['String']['output']>;
|
|
|
|
|
content_assignment?: Maybe<AssignmentObjectType>;
|
|
|
|
|
content_type?: Maybe<Scalars['String']['output']>;
|
|
|
|
|
course?: Maybe<CourseObjectType>;
|
|
|
|
|
description?: Maybe<Scalars['String']['output']>;
|
|
|
|
|
frontend_url?: Maybe<Scalars['String']['output']>;
|
|
|
|
|
id?: Maybe<Scalars['ID']['output']>;
|
|
|
|
|
live?: Maybe<Scalars['Boolean']['output']>;
|
|
|
|
|
minutes?: Maybe<Scalars['Int']['output']>;
|
|
|
|
|
slug?: Maybe<Scalars['String']['output']>;
|
|
|
|
|
title?: Maybe<Scalars['String']['output']>;
|
|
|
|
|
translation_key?: Maybe<Scalars['String']['output']>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type LearningContentFeedbackObjectType = LearningContentInterface & {
|
|
|
|
|
__typename?: 'LearningContentFeedbackObjectType';
|
|
|
|
|
circle?: Maybe<CircleObjectType>;
|
|
|
|
|
@ -426,23 +524,6 @@ export type LearningContentRichTextObjectType = LearningContentInterface & {
|
|
|
|
|
translation_key?: Maybe<Scalars['String']['output']>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type LearningContentTestObjectType = LearningContentInterface & {
|
|
|
|
|
__typename?: 'LearningContentTestObjectType';
|
|
|
|
|
circle?: Maybe<CircleObjectType>;
|
|
|
|
|
content?: Maybe<Scalars['String']['output']>;
|
|
|
|
|
content_assignment?: Maybe<AssignmentObjectType>;
|
|
|
|
|
content_type?: Maybe<Scalars['String']['output']>;
|
|
|
|
|
course?: Maybe<CourseObjectType>;
|
|
|
|
|
description?: Maybe<Scalars['String']['output']>;
|
|
|
|
|
frontend_url?: Maybe<Scalars['String']['output']>;
|
|
|
|
|
id?: Maybe<Scalars['ID']['output']>;
|
|
|
|
|
live?: Maybe<Scalars['Boolean']['output']>;
|
|
|
|
|
minutes?: Maybe<Scalars['Int']['output']>;
|
|
|
|
|
slug?: Maybe<Scalars['String']['output']>;
|
|
|
|
|
title?: Maybe<Scalars['String']['output']>;
|
|
|
|
|
translation_key?: Maybe<Scalars['String']['output']>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type LearningContentVideoObjectType = LearningContentInterface & {
|
|
|
|
|
__typename?: 'LearningContentVideoObjectType';
|
|
|
|
|
circle?: Maybe<CircleObjectType>;
|
|
|
|
|
@ -579,7 +660,8 @@ export type Query = {
|
|
|
|
|
competence_certificate?: Maybe<CompetenceCertificateObjectType>;
|
|
|
|
|
competence_certificate_list?: Maybe<CompetenceCertificateListObjectType>;
|
|
|
|
|
course?: Maybe<CourseObjectType>;
|
|
|
|
|
course_session_attendance_course?: Maybe<CourseSessionAttendanceCourseType>;
|
|
|
|
|
course_session?: Maybe<CourseSessionObjectType>;
|
|
|
|
|
course_session_attendance_course?: Maybe<CourseSessionAttendanceCourseObjectType>;
|
|
|
|
|
learning_content_assignment?: Maybe<LearningContentAssignmentObjectType>;
|
|
|
|
|
learning_content_attendance_course?: Maybe<LearningContentAttendanceCourseObjectType>;
|
|
|
|
|
learning_content_document_list?: Maybe<LearningContentDocumentListObjectType>;
|
|
|
|
|
@ -588,7 +670,7 @@ export type Query = {
|
|
|
|
|
learning_content_media_library?: Maybe<LearningContentMediaLibraryObjectType>;
|
|
|
|
|
learning_content_placeholder?: Maybe<LearningContentPlaceholderObjectType>;
|
|
|
|
|
learning_content_rich_text?: Maybe<LearningContentRichTextObjectType>;
|
|
|
|
|
learning_content_test?: Maybe<LearningContentTestObjectType>;
|
|
|
|
|
learning_content_test?: Maybe<LearningContentEdoniqTestObjectType>;
|
|
|
|
|
learning_content_video?: Maybe<LearningContentVideoObjectType>;
|
|
|
|
|
learning_path?: Maybe<LearningPathObjectType>;
|
|
|
|
|
};
|
|
|
|
|
@ -629,7 +711,12 @@ export type QueryCompetenceCertificateListArgs = {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export type QueryCourseArgs = {
|
|
|
|
|
id?: InputMaybe<Scalars['Int']['input']>;
|
|
|
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export type QueryCourseSessionArgs = {
|
|
|
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -686,7 +773,7 @@ export type AttendanceCheckMutationMutationVariables = Exact<{
|
|
|
|
|
}>;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export type AttendanceCheckMutationMutation = { __typename?: 'Mutation', update_course_session_attendance_course_users?: { __typename?: 'AttendanceCourseUserMutation', course_session_attendance_course?: { __typename?: 'CourseSessionAttendanceCourseType', id: string, attendance_user_list?: Array<{ __typename?: 'AttendanceUserType', user_id: any, first_name?: string | null, last_name?: string | null, email?: string | null, status: AttendanceUserStatus } | null> | null } | null } | null };
|
|
|
|
|
export type AttendanceCheckMutationMutation = { __typename?: 'Mutation', update_course_session_attendance_course_users?: { __typename?: 'AttendanceCourseUserMutation', course_session_attendance_course?: { __typename?: 'CourseSessionAttendanceCourseObjectType', id: string, attendance_user_list?: Array<{ __typename?: 'AttendanceUserObjectType', user_id: any, first_name?: string | null, last_name?: string | null, email?: string | null, status: AttendanceUserStatus } | null> | null } | null } | null };
|
|
|
|
|
|
|
|
|
|
export type UpsertAssignmentCompletionMutationVariables = Exact<{
|
|
|
|
|
assignmentId: Scalars['ID']['input'];
|
|
|
|
|
@ -725,7 +812,7 @@ export type AttendanceCheckQueryQueryVariables = Exact<{
|
|
|
|
|
}>;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export type AttendanceCheckQueryQuery = { __typename?: 'Query', course_session_attendance_course?: { __typename?: 'CourseSessionAttendanceCourseType', id: string, attendance_user_list?: Array<{ __typename?: 'AttendanceUserType', user_id: any, status: AttendanceUserStatus } | null> | null } | null };
|
|
|
|
|
export type AttendanceCheckQueryQuery = { __typename?: 'Query', course_session_attendance_course?: { __typename?: 'CourseSessionAttendanceCourseObjectType', id: string, attendance_user_list?: Array<{ __typename?: 'AttendanceUserObjectType', user_id: any, status: AttendanceUserStatus } | null> | null } | null };
|
|
|
|
|
|
|
|
|
|
export type AssignmentCompletionQueryQueryVariables = Exact<{
|
|
|
|
|
assignmentId: Scalars['ID']['input'];
|
|
|
|
|
@ -741,7 +828,7 @@ export type AssignmentCompletionQueryQuery = { __typename?: 'Query', assignment?
|
|
|
|
|
) | null } | null, assignment_completion?: { __typename?: 'AssignmentCompletionObjectType', id: any, completion_status: AssignmentAssignmentCompletionCompletionStatusChoices, submitted_at?: any | null, evaluation_submitted_at?: any | null, evaluation_points?: number | null, evaluation_max_points?: number | null, evaluation_passed?: boolean | null, edoniq_extended_time_flag: boolean, completion_data?: any | null, evaluation_user?: { __typename?: 'UserType', id: any } | null, assignment_user: { __typename?: 'UserType', id: any } } | null };
|
|
|
|
|
|
|
|
|
|
export type CourseQueryQueryVariables = Exact<{
|
|
|
|
|
courseId: Scalars['Int']['input'];
|
|
|
|
|
courseId: Scalars['ID']['input'];
|
|
|
|
|
}>;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -765,6 +852,9 @@ export type CompetenceCertificateQueryQuery = { __typename?: 'Query', competence
|
|
|
|
|
) | null } | { __typename?: 'LearningContentDocumentListObjectType', title?: string | null, id?: string | null, slug?: string | null, content_type?: string | null, frontend_url?: string | null, circle?: (
|
|
|
|
|
{ __typename?: 'CircleObjectType' }
|
|
|
|
|
& { ' $fragmentRefs'?: { 'CoursePageFieldsCircleObjectTypeFragment': CoursePageFieldsCircleObjectTypeFragment } }
|
|
|
|
|
) | null } | { __typename?: 'LearningContentEdoniqTestObjectType', title?: string | null, id?: string | null, slug?: string | null, content_type?: string | null, frontend_url?: string | null, circle?: (
|
|
|
|
|
{ __typename?: 'CircleObjectType' }
|
|
|
|
|
& { ' $fragmentRefs'?: { 'CoursePageFieldsCircleObjectTypeFragment': CoursePageFieldsCircleObjectTypeFragment } }
|
|
|
|
|
) | null } | { __typename?: 'LearningContentFeedbackObjectType', title?: string | null, id?: string | null, slug?: string | null, content_type?: string | null, frontend_url?: string | null, circle?: (
|
|
|
|
|
{ __typename?: 'CircleObjectType' }
|
|
|
|
|
& { ' $fragmentRefs'?: { 'CoursePageFieldsCircleObjectTypeFragment': CoursePageFieldsCircleObjectTypeFragment } }
|
|
|
|
|
@ -780,9 +870,6 @@ export type CompetenceCertificateQueryQuery = { __typename?: 'Query', competence
|
|
|
|
|
) | null } | { __typename?: 'LearningContentRichTextObjectType', title?: string | null, id?: string | null, slug?: string | null, content_type?: string | null, frontend_url?: string | null, circle?: (
|
|
|
|
|
{ __typename?: 'CircleObjectType' }
|
|
|
|
|
& { ' $fragmentRefs'?: { 'CoursePageFieldsCircleObjectTypeFragment': CoursePageFieldsCircleObjectTypeFragment } }
|
|
|
|
|
) | null } | { __typename?: 'LearningContentTestObjectType', title?: string | null, id?: string | null, slug?: string | null, content_type?: string | null, frontend_url?: string | null, circle?: (
|
|
|
|
|
{ __typename?: 'CircleObjectType' }
|
|
|
|
|
& { ' $fragmentRefs'?: { 'CoursePageFieldsCircleObjectTypeFragment': CoursePageFieldsCircleObjectTypeFragment } }
|
|
|
|
|
) | null } | { __typename?: 'LearningContentVideoObjectType', title?: string | null, id?: string | null, slug?: string | null, content_type?: string | null, frontend_url?: string | null, circle?: (
|
|
|
|
|
{ __typename?: 'CircleObjectType' }
|
|
|
|
|
& { ' $fragmentRefs'?: { 'CoursePageFieldsCircleObjectTypeFragment': CoursePageFieldsCircleObjectTypeFragment } }
|
|
|
|
|
@ -794,6 +881,13 @@ export type CompetenceCertificateQueryQuery = { __typename?: 'Query', competence
|
|
|
|
|
& { ' $fragmentRefs'?: { 'CoursePageFieldsCompetenceCertificateListObjectTypeFragment': CoursePageFieldsCompetenceCertificateListObjectTypeFragment } }
|
|
|
|
|
) | null };
|
|
|
|
|
|
|
|
|
|
export type CourseSessionDetailQueryVariables = Exact<{
|
|
|
|
|
courseSessionId: Scalars['ID']['input'];
|
|
|
|
|
}>;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export type CourseSessionDetailQuery = { __typename?: 'Query', course_session?: { __typename?: 'CourseSessionObjectType', id: string, title: string, course: { __typename?: 'CourseObjectType', id: string, title: string }, users?: Array<{ __typename?: 'CourseSessionUserObjectsType', id: any, user_id?: any | null, first_name?: string | null, last_name?: string | null, email?: string | null, avatar_url?: string | null, role?: string | null, circles?: Array<{ __typename?: 'CourseSessionUserExpertCircleType', id?: string | null, title?: string | null, slug?: string | null } | null> | null } | null> | null, attendance_courses?: Array<{ __typename?: 'CourseSessionAttendanceCourseObjectType', id: string, location: string, trainer: string, learning_content_id?: string | null, due_date?: { __typename?: 'DueDateObjectType', id: string, start?: any | null, end?: any | null } | null, learning_content?: { __typename?: 'LearningContentAttendanceCourseObjectType', id?: string | null, title?: string | null } | null } | null> | null, assignments?: Array<{ __typename?: 'CourseSessionAssignmentObjectType', id: string, submission_deadline?: { __typename?: 'DueDateObjectType', id: string, start?: any | null } | null, evaluation_deadline?: { __typename?: 'DueDateObjectType', id: string, start?: any | null } | null, learning_content?: { __typename?: 'LearningContentAssignmentObjectType', id?: string | null, content_assignment: { __typename?: 'AssignmentObjectType', id?: string | null, title?: string | null, assignment_type: AssignmentAssignmentAssignmentTypeChoices } } | null } | null> | null, edoniq_tests?: Array<{ __typename?: 'CourseSessionEdoniqTestObjectType', id: string, deadline?: { __typename?: 'DueDateObjectType', id: string, start?: any | null, end?: any | null } | null, learning_content?: { __typename?: 'LearningContentEdoniqTestObjectType', id?: string | null, title?: string | null } | null } | null> | null } | null };
|
|
|
|
|
|
|
|
|
|
export type SendFeedbackMutationMutationVariables = Exact<{
|
|
|
|
|
courseSessionId: Scalars['ID']['input'];
|
|
|
|
|
learningContentId: Scalars['ID']['input'];
|
|
|
|
|
@ -809,6 +903,7 @@ export const AttendanceCheckMutationDocument = {"kind":"Document","definitions":
|
|
|
|
|
export const UpsertAssignmentCompletionDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpsertAssignmentCompletion"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"assignmentId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"courseSessionId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"learningContentId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"assignmentUserId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UUID"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"completionStatus"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AssignmentCompletionStatus"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"completionDataString"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"evaluationPoints"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"initializeCompletion"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"upsert_assignment_completion"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"assignment_id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"assignmentId"}}},{"kind":"Argument","name":{"kind":"Name","value":"course_session_id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"courseSessionId"}}},{"kind":"Argument","name":{"kind":"Name","value":"learning_content_page_id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"learningContentId"}}},{"kind":"Argument","name":{"kind":"Name","value":"assignment_user_id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"assignmentUserId"}}},{"kind":"Argument","name":{"kind":"Name","value":"completion_status"},"value":{"kind":"Variable","name":{"kind":"Name","value":"completionStatus"}}},{"kind":"Argument","name":{"kind":"Name","value":"completion_data_string"},"value":{"kind":"Variable","name":{"kind":"Name","value":"completionDataString"}}},{"kind":"Argument","name":{"kind":"Name","value":"evaluation_points"},"value":{"kind":"Variable","name":{"kind":"Name","value":"evaluationPoints"}}},{"kind":"Argument","name":{"kind":"Name","value":"initialize_completion"},"value":{"kind":"Variable","name":{"kind":"Name","value":"initializeCompletion"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assignment_completion"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"completion_status"}},{"kind":"Field","name":{"kind":"Name","value":"submitted_at"}},{"kind":"Field","name":{"kind":"Name","value":"evaluation_submitted_at"}},{"kind":"Field","name":{"kind":"Name","value":"evaluation_points"}},{"kind":"Field","name":{"kind":"Name","value":"completion_data"}}]}}]}}]}}]} as unknown as DocumentNode<UpsertAssignmentCompletionMutation, UpsertAssignmentCompletionMutationVariables>;
|
|
|
|
|
export const AttendanceCheckQueryDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"attendanceCheckQuery"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"courseSessionId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"course_session_attendance_course"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"courseSessionId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"attendance_user_list"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"user_id"}},{"kind":"Field","name":{"kind":"Name","value":"status"}}]}}]}}]}}]} as unknown as DocumentNode<AttendanceCheckQueryQuery, AttendanceCheckQueryQueryVariables>;
|
|
|
|
|
export const AssignmentCompletionQueryDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"assignmentCompletionQuery"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"assignmentId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"courseSessionId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"learningContentId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"assignmentUserId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UUID"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assignment"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"assignmentId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assignment_type"}},{"kind":"Field","name":{"kind":"Name","value":"needs_expert_evaluation"}},{"kind":"Field","name":{"kind":"Name","value":"max_points"}},{"kind":"Field","name":{"kind":"Name","value":"content_type"}},{"kind":"Field","name":{"kind":"Name","value":"effort_required"}},{"kind":"Field","name":{"kind":"Name","value":"evaluation_description"}},{"kind":"Field","name":{"kind":"Name","value":"evaluation_document_url"}},{"kind":"Field","name":{"kind":"Name","value":"evaluation_tasks"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"intro_text"}},{"kind":"Field","name":{"kind":"Name","value":"performance_objectives"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"tasks"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"translation_key"}},{"kind":"Field","name":{"kind":"Name","value":"competence_certificate"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"CoursePageFields"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"assignment_completion"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"assignment_id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"assignmentId"}}},{"kind":"Argument","name":{"kind":"Name","value":"course_session_id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"courseSessionId"}}},{"kind":"Argument","name":{"kind":"Name","value":"assignment_user_id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"assignmentUserId"}}},{"kind":"Argument","name":{"kind":"Name","value":"learning_content_page_id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"learningContentId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"completion_status"}},{"kind":"Field","name":{"kind":"Name","value":"submitted_at"}},{"kind":"Field","name":{"kind":"Name","value":"evaluation_submitted_at"}},{"kind":"Field","name":{"kind":"Name","value":"evaluation_user"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"assignment_user"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"evaluation_points"}},{"kind":"Field","name":{"kind":"Name","value":"evaluation_max_points"}},{"kind":"Field","name":{"kind":"Name","value":"evaluation_passed"}},{"kind":"Field","name":{"kind":"Name","value":"edoniq_extended_time_flag"}},{"kind":"Field","name":{"kind":"Name","value":"completion_data"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"CoursePageFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CoursePageInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"content_type"}},{"kind":"Field","name":{"kind":"Name","value":"frontend_url"}}]}}]} as unknown as DocumentNode<AssignmentCompletionQueryQuery, AssignmentCompletionQueryQueryVariables>;
|
|
|
|
|
export const CourseQueryDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"courseQuery"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"courseId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"course"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"courseId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"category_name"}},{"kind":"Field","name":{"kind":"Name","value":"learning_path"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]} as unknown as DocumentNode<CourseQueryQuery, CourseQueryQueryVariables>;
|
|
|
|
|
export const CourseQueryDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"courseQuery"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"courseId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"course"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"courseId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"category_name"}},{"kind":"Field","name":{"kind":"Name","value":"learning_path"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]} as unknown as DocumentNode<CourseQueryQuery, CourseQueryQueryVariables>;
|
|
|
|
|
export const CompetenceCertificateQueryDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"competenceCertificateQuery"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"courseSlug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"courseSessionId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"competence_certificate_list"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"course_slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"courseSlug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"CoursePageFields"}},{"kind":"Field","name":{"kind":"Name","value":"competence_certificates"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"CoursePageFields"}},{"kind":"Field","name":{"kind":"Name","value":"assignments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"CoursePageFields"}},{"kind":"Field","name":{"kind":"Name","value":"assignment_type"}},{"kind":"Field","name":{"kind":"Name","value":"max_points"}},{"kind":"Field","name":{"kind":"Name","value":"completion"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"course_session_id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"courseSessionId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"completion_status"}},{"kind":"Field","name":{"kind":"Name","value":"submitted_at"}},{"kind":"Field","name":{"kind":"Name","value":"evaluation_points"}},{"kind":"Field","name":{"kind":"Name","value":"evaluation_max_points"}},{"kind":"Field","name":{"kind":"Name","value":"evaluation_passed"}}]}},{"kind":"Field","name":{"kind":"Name","value":"learning_content"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"content_type"}},{"kind":"Field","name":{"kind":"Name","value":"frontend_url"}},{"kind":"Field","name":{"kind":"Name","value":"circle"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"CoursePageFields"}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"CoursePageFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CoursePageInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"content_type"}},{"kind":"Field","name":{"kind":"Name","value":"frontend_url"}}]}}]} as unknown as DocumentNode<CompetenceCertificateQueryQuery, CompetenceCertificateQueryQueryVariables>;
|
|
|
|
|
export const CourseSessionDetailDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"courseSessionDetail"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"courseSessionId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"course_session"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"courseSessionId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"course"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}}]}},{"kind":"Field","name":{"kind":"Name","value":"users"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"user_id"}},{"kind":"Field","name":{"kind":"Name","value":"first_name"}},{"kind":"Field","name":{"kind":"Name","value":"last_name"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"avatar_url"}},{"kind":"Field","name":{"kind":"Name","value":"role"}},{"kind":"Field","name":{"kind":"Name","value":"circles"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"attendance_courses"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"location"}},{"kind":"Field","name":{"kind":"Name","value":"trainer"}},{"kind":"Field","name":{"kind":"Name","value":"due_date"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"end"}}]}},{"kind":"Field","name":{"kind":"Name","value":"learning_content_id"}},{"kind":"Field","name":{"kind":"Name","value":"learning_content"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"assignments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"submission_deadline"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}},{"kind":"Field","name":{"kind":"Name","value":"evaluation_deadline"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}},{"kind":"Field","name":{"kind":"Name","value":"learning_content"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"content_assignment"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"assignment_type"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"edoniq_tests"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"deadline"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"end"}}]}},{"kind":"Field","name":{"kind":"Name","value":"learning_content"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}}]}}]}}]}}]}}]} as unknown as DocumentNode<CourseSessionDetailQuery, CourseSessionDetailQueryVariables>;
|
|
|
|
|
export const SendFeedbackMutationDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"SendFeedbackMutation"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"courseSessionId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"learningContentId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"data"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"GenericScalar"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"submitted"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"send_feedback"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"course_session_id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"courseSessionId"}}},{"kind":"Argument","name":{"kind":"Name","value":"learning_content_page_id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"learningContentId"}}},{"kind":"Argument","name":{"kind":"Name","value":"data"},"value":{"kind":"Variable","name":{"kind":"Name","value":"data"}}},{"kind":"Argument","name":{"kind":"Name","value":"submitted"},"value":{"kind":"Variable","name":{"kind":"Name","value":"submitted"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"feedback_response"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"data"}},{"kind":"Field","name":{"kind":"Name","value":"submitted"}}]}},{"kind":"Field","name":{"kind":"Name","value":"errors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"Field","name":{"kind":"Name","value":"messages"}}]}}]}}]}}]} as unknown as DocumentNode<SendFeedbackMutationMutation, SendFeedbackMutationMutationVariables>;
|