Files
AI/참고/neo4j-graphrag-python-main/examples/data/extracted_schema.yaml

73 lines
1.2 KiB
YAML
Raw Normal View History

2026-05-12 19:40:31 +09:00
node_types:
- label: Person
description: ''
properties:
- name: name
type: STRING
description: ''
- name: position
type: STRING
description: ''
- name: startYear
type: INTEGER
description: ''
- label: Company
description: ''
properties:
- name: name
type: STRING
description: ''
- name: foundedYear
type: INTEGER
description: ''
- name: revenue
type: FLOAT
description: ''
- name: valuation
type: FLOAT
description: ''
- label: Product
description: ''
properties:
- name: name
type: STRING
description: ''
- name: launchYear
type: INTEGER
description: ''
- name: unitsSold
type: INTEGER
description: ''
- label: Office
description: ''
properties:
- name: location
type: STRING
description: ''
relationship_types:
- label: WORKS_FOR
description: ''
properties: []
- label: MANAGES
description: ''
properties: []
- label: DEVELOPED_BY
description: ''
properties: []
- label: LOCATED_IN
description: ''
properties: []
patterns:
- - Person
- WORKS_FOR
- Company
- - Person
- MANAGES
- Office
- - Product
- DEVELOPED_BY
- Person
- - Company
- LOCATED_IN
- Office