GraphiQL CommentsConnection for Assignment submissions of additional attempts
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The assignment submission where more than one attempt was made the comments are not being returned.
Here is the query being used.
query MyQuery {
assignment(id: "895") {
htmlUrl
name
pointsPossible
submissionsConnection {
nodes {
user {
email
name
}
originalityData
attempt
grade
score
state
submissionStatus
enteredGrade
enteredScore
rubricAssessmentsConnection {
nodes {
assessmentRatings {
comments
description
points
}
score
}
}
commentsConnection {
nodes {
comment
author {
email
name
}
}
}
}
}
}
}
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello @KestonMurphy
Glad to help here I would recommend looking over this guide https://canvas.instructure.com/doc/api/file.graphql.html and then going here https://github.com/graphql/graphiql for specific commands in this case under their documentation
Regards,
Ian