Click Below to Get the Code

Browse, clone, and build from real-world templates powered by Harper.
Tutorial
GitHub Logo

Building a Calendar and Scheduling App with Harper

This post is about using Harper's GraphQL capabilities to build an API for a calendar and scheduling backend with minimal code
Tutorial

Building a Calendar and Scheduling App with Harper

By
Nenne Nwodo
August 18, 2025
By
Nenne Nwodo
August 18, 2025
By
Nenne Nwodo
August 18, 2025
August 18, 2025
This post is about using Harper's GraphQL capabilities to build an API for a calendar and scheduling backend with minimal code
Nenne Nwodo
Developer Relations

Building calendar features turns into a mess fast. What starts as "just store some events" becomes Redis for caching, Kafka for real-time updates, and multiple services just to check if someone's free for a meeting.

‍

You end up debugging why calendars aren't syncing instead of building the scheduling features users actually want.

‍

Harper changes this. Everything runs in one process: database, cache, real-time updates, conflict detection. No network calls between services, no complex synchronization.

The Traditional Calendar Nightmare

Calendar systems get complex because of coordination between services. Your availability service needs to talk to your event service. Notifications need to sync with conflict detection. Time zones need to work across everything.

A simple "meeting time changed" notification becomes a distributed systems problem. Database updates, cache invalidation, real-time pushes, and hoping nothing fails halfway through.

Setting Up Your Calendar Schema

Harper uses GraphQL to define your data model and automatically generates REST endpoints:

type User @table @export {
  id: ID @primaryKey
  email: String @indexed
  name: String
  timezone: String
  createdAt: String @createdTime
}

type Event @table @export {
  id: ID @primaryKey
  title: String @indexed
  startTime: String @indexed
  endTime: String @indexed
  organizerId: ID @indexed
  organizer: User @relationship(from: organizerId)
  attendeeIds: [ID] @indexed
  attendees: [User] @relationship(from: attendeeIds)
  status: String @indexed
  createdAt: String @createdTime
}

type Availability @table @export {
  id: ID @primaryKey
  userId: ID @indexed
  dayOfWeek: Int @indexed
  startTime: String @indexed
  endTime: String @indexed
  isAvailable: Boolean @indexed
}

The @export directive creates REST endpoints at /User/, /Event/, and /Availability/. The @relationship directive handles joins automatically.

Simple Scheduling Operations

Create a meeting:

POST /Event/
Content-Type: application/json

{
  "title": "Product Review",
  "startTime": "2024-08-15T14:00:00Z",
  "endTime": "2024-08-15T15:00:00Z",
  "organizerId": "user123",
  "attendeeIds": ["user456", "user789"]
}

 

Get someone's calendar:

GET /Event/?organizerId=user123&startTime=gte=2024-08-01&sort=startTime

Check for conflicts:

GET /Event/?attendeeIds=user123&startTime=lt=2024-08-15T15:00:00Z&endTime=gt=2024-08-15T14:00:00Z

Everything happens in the same process. No network latency, no coordination complexity.

Real-Time Updates

Harper has WebSockets built in:

ws://localhost:9926/Event/user123

When someone accepts a meeting, all attendees see the update instantly. No message brokers needed.

Time Zone Handling

Store everything in UTC, handle conversion at query time:

GET /Event/?organizerId=user123&timezone=America/New_York&startTime=gte=2024-08-15

No separate timezone service, no complex conversion logic.

Why This Works

Harper's single-process architecture eliminates the coordination problems that make calendar systems complex. You get faster response times, automatic conflict detection, and real-time sync without managing multiple services.

You focus on building scheduling features instead of debugging distributed systems.

‍

‍

‍

Building calendar features turns into a mess fast. What starts as "just store some events" becomes Redis for caching, Kafka for real-time updates, and multiple services just to check if someone's free for a meeting.

‍

You end up debugging why calendars aren't syncing instead of building the scheduling features users actually want.

‍

Harper changes this. Everything runs in one process: database, cache, real-time updates, conflict detection. No network calls between services, no complex synchronization.

The Traditional Calendar Nightmare

Calendar systems get complex because of coordination between services. Your availability service needs to talk to your event service. Notifications need to sync with conflict detection. Time zones need to work across everything.

A simple "meeting time changed" notification becomes a distributed systems problem. Database updates, cache invalidation, real-time pushes, and hoping nothing fails halfway through.

Setting Up Your Calendar Schema

Harper uses GraphQL to define your data model and automatically generates REST endpoints:

type User @table @export {
  id: ID @primaryKey
  email: String @indexed
  name: String
  timezone: String
  createdAt: String @createdTime
}

type Event @table @export {
  id: ID @primaryKey
  title: String @indexed
  startTime: String @indexed
  endTime: String @indexed
  organizerId: ID @indexed
  organizer: User @relationship(from: organizerId)
  attendeeIds: [ID] @indexed
  attendees: [User] @relationship(from: attendeeIds)
  status: String @indexed
  createdAt: String @createdTime
}

type Availability @table @export {
  id: ID @primaryKey
  userId: ID @indexed
  dayOfWeek: Int @indexed
  startTime: String @indexed
  endTime: String @indexed
  isAvailable: Boolean @indexed
}

The @export directive creates REST endpoints at /User/, /Event/, and /Availability/. The @relationship directive handles joins automatically.

Simple Scheduling Operations

Create a meeting:

POST /Event/
Content-Type: application/json

{
  "title": "Product Review",
  "startTime": "2024-08-15T14:00:00Z",
  "endTime": "2024-08-15T15:00:00Z",
  "organizerId": "user123",
  "attendeeIds": ["user456", "user789"]
}

 

Get someone's calendar:

GET /Event/?organizerId=user123&startTime=gte=2024-08-01&sort=startTime

Check for conflicts:

GET /Event/?attendeeIds=user123&startTime=lt=2024-08-15T15:00:00Z&endTime=gt=2024-08-15T14:00:00Z

Everything happens in the same process. No network latency, no coordination complexity.

Real-Time Updates

Harper has WebSockets built in:

ws://localhost:9926/Event/user123

When someone accepts a meeting, all attendees see the update instantly. No message brokers needed.

Time Zone Handling

Store everything in UTC, handle conversion at query time:

GET /Event/?organizerId=user123&timezone=America/New_York&startTime=gte=2024-08-15

No separate timezone service, no complex conversion logic.

Why This Works

Harper's single-process architecture eliminates the coordination problems that make calendar systems complex. You get faster response times, automatic conflict detection, and real-time sync without managing multiple services.

You focus on building scheduling features instead of debugging distributed systems.

‍

‍

‍

This post is about using Harper's GraphQL capabilities to build an API for a calendar and scheduling backend with minimal code

Download

White arrow pointing right
This post is about using Harper's GraphQL capabilities to build an API for a calendar and scheduling backend with minimal code

Download

White arrow pointing right
This post is about using Harper's GraphQL capabilities to build an API for a calendar and scheduling backend with minimal code

Download

White arrow pointing right

Explore Recent Resources

Solution
GitHub Logo

Enterprise Agentic Development with Harper

Enterprise Agentic Development with Harper enables coding agents to build and deploy production-ready applications without backend wiring. A unified runtime combines database, cache, APIs, messaging, and global deployment into one seamless, enterprise-proven platform.
Solution
Enterprise Agentic Development with Harper enables coding agents to build and deploy production-ready applications without backend wiring. A unified runtime combines database, cache, APIs, messaging, and global deployment into one seamless, enterprise-proven platform.
Person with short dark hair and moustache, wearing a colorful plaid shirt, smiling outdoors in a forested mountain landscape.
Aleks Haugom
Senior Manager of GTM & Marketing
Solution

Enterprise Agentic Development with Harper

Enterprise Agentic Development with Harper enables coding agents to build and deploy production-ready applications without backend wiring. A unified runtime combines database, cache, APIs, messaging, and global deployment into one seamless, enterprise-proven platform.
Aleks Haugom
Feb 2026
Solution

Enterprise Agentic Development with Harper

Enterprise Agentic Development with Harper enables coding agents to build and deploy production-ready applications without backend wiring. A unified runtime combines database, cache, APIs, messaging, and global deployment into one seamless, enterprise-proven platform.
Aleks Haugom
Solution

Enterprise Agentic Development with Harper

Enterprise Agentic Development with Harper enables coding agents to build and deploy production-ready applications without backend wiring. A unified runtime combines database, cache, APIs, messaging, and global deployment into one seamless, enterprise-proven platform.
Aleks Haugom
Tutorial
GitHub Logo

In 3 Days I Built an AI Ops Assistant That Replaced $2,400/month in SaaS

Learn how to build a lightweight AI ops assistant in just three days that consolidates tools, automates incident workflows, and delivers real-time answers in Slack, all while cutting thousands in monthly SaaS costs. This practical breakdown covers the stack, architecture, and cost savings behind a smarter approach to AI-driven automation and SaaS cost optimization.
Tutorial
Learn how to build a lightweight AI ops assistant in just three days that consolidates tools, automates incident workflows, and delivers real-time answers in Slack, all while cutting thousands in monthly SaaS costs. This practical breakdown covers the stack, architecture, and cost savings behind a smarter approach to AI-driven automation and SaaS cost optimization.
Professional headshot of smiling man with short gray hair and beard, wearing light button-down shirt against blue backdrop.
Stephen Goldberg
CEO & Co-Founder
Tutorial

In 3 Days I Built an AI Ops Assistant That Replaced $2,400/month in SaaS

Learn how to build a lightweight AI ops assistant in just three days that consolidates tools, automates incident workflows, and delivers real-time answers in Slack, all while cutting thousands in monthly SaaS costs. This practical breakdown covers the stack, architecture, and cost savings behind a smarter approach to AI-driven automation and SaaS cost optimization.
Stephen Goldberg
Feb 2026
Tutorial

In 3 Days I Built an AI Ops Assistant That Replaced $2,400/month in SaaS

Learn how to build a lightweight AI ops assistant in just three days that consolidates tools, automates incident workflows, and delivers real-time answers in Slack, all while cutting thousands in monthly SaaS costs. This practical breakdown covers the stack, architecture, and cost savings behind a smarter approach to AI-driven automation and SaaS cost optimization.
Stephen Goldberg
Tutorial

In 3 Days I Built an AI Ops Assistant That Replaced $2,400/month in SaaS

Learn how to build a lightweight AI ops assistant in just three days that consolidates tools, automates incident workflows, and delivers real-time answers in Slack, all while cutting thousands in monthly SaaS costs. This practical breakdown covers the stack, architecture, and cost savings behind a smarter approach to AI-driven automation and SaaS cost optimization.
Stephen Goldberg
Tutorial
GitHub Logo

How Claude Deploys My Apps to Harper Fabric

Learn how to use Claude Code to build and deploy apps to Harper Fabric using simple chat commands. This guide covers AI-assisted development, one-command deploys, live production updates, and how to streamline cloud infrastructure with an agentic coding workflow.
A.I.
Tutorial
Learn how to use Claude Code to build and deploy apps to Harper Fabric using simple chat commands. This guide covers AI-assisted development, one-command deploys, live production updates, and how to streamline cloud infrastructure with an agentic coding workflow.
Professional headshot of smiling man with short gray hair and beard, wearing light button-down shirt against blue backdrop.
Stephen Goldberg
CEO & Co-Founder
Tutorial

How Claude Deploys My Apps to Harper Fabric

Learn how to use Claude Code to build and deploy apps to Harper Fabric using simple chat commands. This guide covers AI-assisted development, one-command deploys, live production updates, and how to streamline cloud infrastructure with an agentic coding workflow.
Stephen Goldberg
Feb 2026
Tutorial

How Claude Deploys My Apps to Harper Fabric

Learn how to use Claude Code to build and deploy apps to Harper Fabric using simple chat commands. This guide covers AI-assisted development, one-command deploys, live production updates, and how to streamline cloud infrastructure with an agentic coding workflow.
Stephen Goldberg
Tutorial

How Claude Deploys My Apps to Harper Fabric

Learn how to use Claude Code to build and deploy apps to Harper Fabric using simple chat commands. This guide covers AI-assisted development, one-command deploys, live production updates, and how to streamline cloud infrastructure with an agentic coding workflow.
Stephen Goldberg