OBJECT

Query

Query your grading report.

link GraphQL Schema definition

  • type Query {
  • # Get the data given by a GIA grading report.
  • #
  • # Arguments
  • # report_number: [Not documented]
  • getReport(report_number: String!): GradingReport
  • # Check your quota, does not consume a report request from your quota.
  • getQuota: Quota
  • # Giving users the ability to find out if a report was changed after a date
  • # provided by the user. Date must be in ISO8601 date format. NOTE the attribute
  • # representing the report's date has been RENAMED. Old name: report_date. New
  • # name: date.
  • #
  • # Arguments
  • # report_number: [Not documented]
  • # date: [Not documented]
  • isReportUpdated(report_number: String!, date: String!): ReportUpdated
  • # Arguments
  • # limit: [Not documented]
  • # cursor: [Not documented]
  • getChangedReports(limit: Int, cursor: String): ChangedReportResults!
  • }

link Require by

This element is not required by anyone