Mermaid syntax tutorial

Mermaid Class Diagram Tutorial

Class diagrams describe object models, relationships, methods, and attributes. They are useful for documenting domain models and object-oriented design.

Domain modelingSDK documentationBackend entity design
Syntax

classDiagram

Examples

1 starter pattern

Review

5 production checks

Diagram preview

Rendered Mermaid example

Class Diagram
Mermaid Class Diagram example

What You Will Learn

How to recognize when Class Diagram is the right Mermaid diagram, write the opening declaration, and shape a readable first version.

Best Fit

Domain modeling, SDK documentation, Backend entity design.

Start Here

Copy the starter example, replace labels with your domain language, then simplify anything that does not help the reader.

Syntax Basics

Start with the diagram declaration, then add the smallest set of labels, relationships, and annotations needed to communicate the idea.

  • Use classDiagram as the diagram declaration.
  • Declare fields and methods inside class blocks.
  • Use inheritance, composition, aggregation, and association arrows.
  • Add labels to relationships when cardinality matters.

Official Documentation Coverage

The Mermaid documentation for Class Diagram covers the following syntax areas. This tutorial condenses those topics into practical guidance for day-to-day documentation.

Class declarations

Class declarations defines the named objects in the diagram. Keep names stable, domain-specific, and short enough to remain readable in exported images.

Class labels

Class labels defines the named objects in the diagram. Keep names stable, domain-specific, and short enough to remain readable in exported images.

Fields and methods

Fields and methods is part of the official Mermaid Class Diagram syntax surface. Add it when the starter example needs more precision for production documentation.

Relationship types

Relationship types controls how elements connect. Treat these connections as the main information layer, and label them when direction, ownership, or meaning is not obvious.

Relationship labels

Relationship labels controls how elements connect. Treat these connections as the main information layer, and label them when direction, ownership, or meaning is not obvious.

Two-way relations

Two-way relations is part of the official Mermaid Class Diagram syntax surface. Add it when the starter example needs more precision for production documentation.

Interfaces and namespaces

Interfaces and namespaces is part of the official Mermaid Class Diagram syntax surface. Add it when the starter example needs more precision for production documentation.

Cardinality and annotations

Cardinality and annotations is part of the official Mermaid Class Diagram syntax surface. Add it when the starter example needs more precision for production documentation.

How This Tutorial Uses The Official Docs

Mermaid syntax evolves, so the official page remains the primary reference. This tutorial turns that reference material into an authoring workflow, review checklist, and production guidance.

Start with the official grammar

The official Mermaid Class Diagram page is the source of truth for syntax changes. Use this tutorial to choose the right authoring pattern, then confirm exact keywords and edge cases in the official reference.

Prioritize the core sections

For the first pass, focus on Class declarations, Class labels, Fields and methods, Relationship types. These sections usually explain the minimum structure required for a valid Class Diagram.

Add advanced syntax only when it earns its space

Treat Relationship labels, Two-way relations, Interfaces and namespaces, Cardinality and annotations as optional layers. They are valuable when the diagram needs precision, but they should not make the first version harder to read.

Syntax Reference Map

Use this map as a practical reading order for the official syntax page. It separates the first concepts to learn from the advanced details that are better added after the diagram already communicates the right idea.

Phase
How to use it
Start
Class declarations

Class declarations defines the named objects in the diagram. Keep names stable, domain-specific, and short enough to remain readable in exported images.

Does this class declarations detail make the class diagram easier to understand or maintain?

Start
Class labels

Class labels defines the named objects in the diagram. Keep names stable, domain-specific, and short enough to remain readable in exported images.

Does this class labels detail make the class diagram easier to understand or maintain?

Refine
Fields and methods

Fields and methods is part of the official Mermaid Class Diagram syntax surface. Add it when the starter example needs more precision for production documentation.

Does this fields and methods detail make the class diagram easier to understand or maintain?

Refine
Relationship types

Relationship types controls how elements connect. Treat these connections as the main information layer, and label them when direction, ownership, or meaning is not obvious.

Does this relationship types detail make the class diagram easier to understand or maintain?

Refine
Relationship labels

Relationship labels controls how elements connect. Treat these connections as the main information layer, and label them when direction, ownership, or meaning is not obvious.

Does this relationship labels detail make the class diagram easier to understand or maintain?

Polish
Two-way relations

Two-way relations is part of the official Mermaid Class Diagram syntax surface. Add it when the starter example needs more precision for production documentation.

Does this two-way relations detail make the class diagram easier to understand or maintain?

Polish
Interfaces and namespaces

Interfaces and namespaces is part of the official Mermaid Class Diagram syntax surface. Add it when the starter example needs more precision for production documentation.

Does this interfaces and namespaces detail make the class diagram easier to understand or maintain?

Polish
Cardinality and annotations

Cardinality and annotations is part of the official Mermaid Class Diagram syntax surface. Add it when the starter example needs more precision for production documentation.

Does this cardinality and annotations detail make the class diagram easier to understand or maintain?

How To Study The Official Syntax

The official Mermaid page is broad because it documents the full parser surface. For a working tutorial, read it in passes instead of trying to memorize every option at once.

Step 1

Skim the official Class Diagram documentation once to understand the full syntax surface before copying examples into production docs.

Step 2

Focus first on Class declarations, Class labels, Fields and methods, Relationship types, Relationship labels because these topics usually explain the core authoring model.

Step 3

After the first diagram renders, revisit the official styling, configuration, and advanced sections only when the diagram needs that extra precision.

Authoring Workflow

This workflow turns the official syntax reference into a repeatable writing process for docs, specs, and product pages.

Step 1

Frame the reader question

Before writing syntax, decide what question the Class Diagram should answer. Good diagrams usually answer one question clearly instead of answering several partially.

Step 2

Draft the smallest valid diagram

Start with the declaration for classDiagram, add only the required elements, and render it before introducing advanced styling or configuration.

Step 3

Add semantic labels

Replace placeholder names with business or system language that readers already know. Labels should reduce explanation work.

Step 4

Review for maintenance

Remove details that are likely to drift quickly. If a value, date, or dependency changes often, explain who owns the update.

Quick Syntax Cheat Sheet

Use this compact reference when you already know the goal and need to write a valid Mermaid Class Diagram quickly.

Declaration
classDiagram

Start the code block with classDiagram so Mermaid selects the Class Diagram renderer.

Core content
Use classDiagram as the diagram declaration.

Add the smallest number of statements that express the main idea before adding visual polish.

Connections
Use inheritance, composition, aggregation, and association arrows.

Use connections only where they explain ownership, sequence, flow, dependency, or hierarchy.

Advanced topic
Class declarations

Use official syntax topics as optional layers, not as requirements for every diagram.

Practice Prompts

Use these prompts after reading the official syntax sections. They force the diagram to stay practical instead of becoming a syntax inventory.

Exercise 1

Create a Class Diagram for domain modeling using no more than eight visible elements.

Exercise 2

Rewrite the starter example with labels from your own product or engineering domain, then remove any line that does not change the reader's understanding.

Exercise 3

Add one official syntax feature from Class declarations, Class labels, Fields and methods and explain why that feature makes the diagram clearer.

Exercise 4

Compare the result with entity-relationship-diagram and c4 and write one sentence explaining why Class Diagram is still the better fit.

Examples

Copy the example into the Mermaid editor, then adjust labels and relationships for your own documentation.

User and Order Model

A small domain model with an association.

classDiagram
  class User {
    +String id
    +String email
    +login()
  }
  class Order {
    +String id
    +Number total
    +pay()
  }
  User "1" --> "*" Order : places

Example Walkthrough

Read Mermaid examples from top to bottom. The first meaningful line usually selects the diagram parser; the following lines add labels, relationships, values, states, or layout hints.

classDiagram

This line declares the Mermaid diagram type, which tells Mermaid which parser and renderer to use.

class User {

This line configures structure, labels, sections, participants, axes, or reusable diagram elements.

+String id

This line contributes a label, item, or nested detail that Mermaid places into the diagram.

+String email

This line contributes a label, item, or nested detail that Mermaid places into the diagram.

+login()

This line contributes a label, item, or nested detail that Mermaid places into the diagram.

}

This line adds a relationship, transition, message, data value, or visual item to the diagram.

class Order {

This line configures structure, labels, sections, participants, axes, or reusable diagram elements.

+String id

This line contributes a label, item, or nested detail that Mermaid places into the diagram.

When To Use Class Diagram

Domain modeling
SDK documentation
Backend entity design
Refactoring discussions

Diagram Choice Guide

A strong Mermaid tutorial should also explain when not to use the diagram type. Use this guide before adding a Class Diagram to a public page or technical design document.

Use this diagram when

Class Diagram works best for domain modeling, sdk documentation, backend entity design. It should make the reader's next decision easier, not merely decorate the page.

Choose a different diagram when

Your main question is better answered by another structure, such as entity-relationship-diagram, c4, block. For example, use a sequence diagram for message order and a flowchart for branching process logic.

Keep it maintainable by

Keeping the first version small, naming every important element with business language, and linking back to the official Mermaid syntax page when advanced syntax is required.

Production Checklist

Before publishing a Mermaid Class Diagram, run through this checklist so the diagram remains useful after the immediate conversation is over.

Confirm that Class Diagram is the right diagram type for the problem.
Start from the smallest example that communicates the idea clearly.
Use consistent names for nodes, actors, states, or data labels.
Check the diagram in the Mermaid editor before publishing.
Add surrounding text that explains assumptions, scale, or business context.

Production Review Questions

Before shipping the diagram in public docs, compare it against the official syntax page and then ask whether each line helps the reader make a better decision.

Does the first line clearly select the Mermaid Class Diagram renderer with classDiagram?
Are names and labels from the Class declarations area short, stable, and meaningful to the target reader?
Do the relationship types details show real meaning instead of visual decoration?
Could a teammate update this diagram next month without rereading the whole surrounding document?

Troubleshooting

Most Mermaid issues come from an incorrect declaration, a syntax feature used before the base diagram works, or a diagram that is trying to communicate too many ideas at once.

The diagram does not render

Check that the first line is the correct declaration for Class Diagram: classDiagram. Then remove advanced lines until the smallest version renders.

The diagram renders but is hard to read

Shorten labels, reduce the number of visible items, and split separate ideas into separate diagrams.

The meaning is ambiguous

Add edge labels, relationship names, axis labels, or surrounding explanatory text so readers know what the diagram is proving.

The diagram becomes stale

Prefer stable concepts over volatile implementation details, and add ownership notes when the diagram documents a changing system.

Publishing Notes

For SEO and long-term documentation quality, keep the Mermaid code close to the explanation. Search engines can understand the surrounding text, while engineers can copy the exact syntax into their own editor.

If the diagram is used in a product page, add a short caption that states what decision the diagram supports. If it is used in internal docs, add ownership and update expectations so the diagram does not become stale after the system changes.

Best Practices

  • -Show only the fields and methods needed for the discussion.
  • -Use cardinality labels where they remove ambiguity.
  • -Group related classes by package in separate diagrams.
  • -Prefer meaningful relationship labels.

Common Mistakes

  • -Trying to model every class in a large codebase.
  • -Mixing runtime flow with static structure.
  • -Leaving relationship direction ambiguous.

Choosing Related Diagram Types

If Class Diagram does not quite match your communication goal, compare it with these nearby Mermaid diagram types.

FAQ

Is Mermaid Class Diagram rendered on the server?

This tutorial page is server-rendered for SEO. The Mermaid syntax is shown as plain text so search engines and readers can inspect it without waiting for client-side rendering.

Can I edit this Class Diagram example?

Yes. Open the Mermaid editor, paste the example, and modify the labels, relationships, or values for your own use case.