Skip to main content

Overview

Core types are predefined GraphQL types provided by Exulu IMP for managing platform resources. These types are always available in the schema, regardless of your implementation.

Type Categories

Common Fields

Most core types include these standard fields:
  • id - Unique identifier (ID or Int)
  • createdAt - Timestamp when resource was created
  • updatedAt - Timestamp when resource was last modified
  • RBAC - Access control settings (when RBAC is enabled)

Type Safety

All core types are fully typed in the GraphQL schema with TypeScript support. Use GraphQL introspection to explore available fields and their types.

Next Steps