Pluralsight · Schema

GraphQLError

GraphQLError from Pluralsight API

CoursesEducationEngineering MetricsLearningSkills AssessmentTechnologyVideo Training

Properties

Name Type Description
message string Error message
locations array
path array
View JSON Schema on GitHub

JSON Schema

pluralsight-content-progress-graph-ql-error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/pluralsight/refs/heads/main/json-schema/pluralsight-content-progress-graph-ql-error-schema.json",
  "title": "GraphQLError",
  "description": "GraphQLError from Pluralsight API",
  "type": "object",
  "properties": {
    "message": {
      "type": "string",
      "description": "Error message",
      "example": "example_value"
    },
    "locations": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "line": {
            "type": "integer"
          },
          "column": {
            "type": "integer"
          }
        }
      }
    },
    "path": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}