Last active 1732153523

resto.json Raw
1{
2 "node": {
3 "type": "Restaurant"
4 "name": "Le Gourmet",
5 "rating": 4.5,
6 "cuisine_type": ["French", "Fusion"],
7 "open_hours": {
8 "monday": "9:00-21:00",
9 "tuesday": "9:00-21:00",
10 "wednesday": "9:00-21:00",
11 "thursday": "9:00-22:00",
12 "friday": "9:00-23:00",
13 "saturday": "10:00-23:00",
14 "sunday": "10:00-20:00"
15 },
16 "location_id": "loc_001",
17 "chain_id": "chain_01"
18 },
19 "edges": [
20 {
21 "type": "PART_OF_CHAIN",
22 "target_node": {
23 "type": "Restaurant Chain",
24 "attributes": {
25 "name": "Gourmet Group"
26 }
27 }
28 },
29 {
30 "type": "LOCATED_IN",
31 "target_node": {
32 "type": "Location",
33 "attributes": {
34 "city": "Montreal",
35 "region": "Quebec",
36 "country": "Canada"
37 }
38 }
39 },
40 {
41 "type": "HAS_MENU",
42 "target_node": {
43 "type": "Menu",
44 "attributes": {
45 "menu_id": "menu_123",
46 "name": "Dinner Menu",
47 "active_dates": ["2024-01-01", "2024-12-31"]
48 }
49 }
50 }
51 ]
52}