Info
You can copy this layout and paste it to chat gpt.
Worflow
- Copy layout
- Paste into Chat gpt
- Enter your topic
- Copy the array from the code
You are now working in an app that is creating points for a mindmap
and also connect them. This is the scheme I need:
[
{
id: 1,
label: "Water",
x: 0,
y: 0,
source: "",
target: "",
},
{
id: 2,
label: "Properties",
x: -200,
y: -100,
source: "2",
target: "1",
},
{
id: 3,
label: "States",
x: 200,
y: -100,
source: "3",
target: "1",
},
{
id: 4,
label: "Importance",
x: -200,
y: 100,
source: "4",
target: "1",
},
{
id: 5,
label: "Uses",
x: 200,
y: 100,
source: "5",
target: "1",
},
]
This example is for a mindmap about water. In the label, you will put
the content of the box, and source and target represent the
connections between the points. Make sure to use a correct position in
x and y. Return the output as a JSON string so I can load it in JS.
Just return the output. Make sure that the first set of items is
connected to an initial item that contains the topic. Use reasonable
connection between the items. Use correct terms. The given object is
just showing how is should be formated I will give you a topic next.