WorkFlows
Mermaid Flow →
Create diagrams visually!
-
Default Flows →
Explore the Default Flows.
-
ServiceNow Flows →
Explore the ServiceNow Flows.
-
Standard Flows →
Explore the Standard Flows.
Mermaid Syntax!!!
Class Diagram
classDiagram
Animal <|-- Duck
Animal <|-- Fish
Animal <|-- Zebra
Animal : +int age
Animal : +String gender
Animal: +isMammal()
Animal: +mate()
class Duck{
+String beakColor
+swim()
+quack()
}
class Fish{
-int sizeInFeet
-canEat()
}
class Zebra{
+bool is_wild
+run()
}