Skip to main content
Unlike the vanilla Convex API, system tables (_storage, _scheduled_functions) are queryable using the exact same API as regular tables. These tables contain metadata for built-in Convex features, and are read-only.
reader.table("_storage").get(storageId);
reader
  .table("_scheduled_functions")
  .index("by_creation_time", "desc")
  .take(10);