OBJECT

PostReport

link GraphQL Schema definition

  • type PostReport implements Node {
  • id: ID!
  • # The description of the user report
  • description: String
  • createdAt: Time!
  • # The time the report was reviewed
  • reviewedAt: Time
  • # The reason for the user report
  • reportReason: ReportReason
  • # The author of the post report
  • author: User
  • # The post that was reported
  • reportedPost: Post
  • # The admin user that reviewed the report
  • reviewedBy: User
  • }