OBJECT

CodingSolution

Solution submitted to a coding question.

link GraphQL Schema definition

1type CodingSolution implements TaskSolution {
2
3id: ID!
4
5plagiarismLabel: PlagiarismLabel @deprecated( reason: "Use integrityReport.solutionSimilarity.score on TestSessionTaskResult instead" )
6
7# Files submitted as a solution.
8#
9# - Cost complexity: 2
10sources: [SolutionSource]!
11
12# A standalone URL to the solution.
13#
14# - Cost complexity: 1
15url: String!
16
17}

link Required by

This element is not required by anyone