OBJECT

ReferenceCategory

Reference Category object

link GraphQL Schema definition

  • type ReferenceCategory {
  • # ID of the Reference Category
  • id: ID!
  • # Parent Reference Category of the Reference Category
  • parent: ReferenceCategory
  • # Name of the Reference Category
  • name: String!
  • # Slug of the Reference Category
  • slug: String!
  • # Count of the References connected to the Reference Category
  • connectedReferencies: Int!
  • # CreatedAt datetime of the Reference Category
  • createdAt: DateTime!
  • # UpdatedAt datetime of the Reference Category
  • updatedAt: DateTime!
  • # Is the Reference Category soft deleted
  • archived: Boolean!
  • }