31 lines
803 B
Python
31 lines
803 B
Python
UPDATE_ASSIGNMENT_MUTATION = '''
|
|
mutation UpdateAssignment($input: UpdateAssignmentInput!) {
|
|
updateAssignment(input: $input){
|
|
updatedAssignment {
|
|
id
|
|
title
|
|
assignment
|
|
submission {
|
|
id
|
|
text
|
|
final
|
|
document
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
'''
|
|
|
|
UPDATE_SUBMISSION_FEEDBACK_MUTATION = '''
|
|
mutation UpdateSubmissionFeedback($input: UpdateSubmissionFeedbackInput!) {
|
|
updateSubmissionFeedback(input: $input){
|
|
updatedSubmissionFeedback {
|
|
id
|
|
text
|
|
final
|
|
}
|
|
}
|
|
}
|
|
'''
|