| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /**
- * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
- * SPDX-License-Identifier: MIT
- */
- import { WorkflowJSON } from '@flowgram.ai/free-layout-editor';
- export const initialData: WorkflowJSON = {
- nodes: [
- {
- id: 'start_0',
- type: 'start',
- meta: {
- position: { x: 0, y: 0 },
- },
- data: {
- title: 'Start',
- content: 'Start content',
- },
- },
- {
- id: 'node_0',
- type: 'custom',
- meta: {
- position: { x: 400, y: 0 },
- },
- data: {
- title: 'Custom',
- content: 'Custom node content',
- },
- },
- {
- id: 'end_0',
- type: 'end',
- meta: {
- position: { x: 800, y: 0 },
- },
- data: {
- title: 'End',
- content: 'End content',
- },
- },
- ],
- edges: [
- {
- sourceNodeID: 'start_0',
- targetNodeID: 'node_0',
- },
- {
- sourceNodeID: 'node_0',
- targetNodeID: 'end_0',
- },
- ],
- };
|