General Format
- Confgure schemas under
nodeConfig
andedgeConfig
:
nodeConfig:
# Configure the first node schema
# Schema name
- schema:
# (Optional) Lists the customer properties to be exported
properties:
# Configure the second node schema
- schema:
properties:
# Configure more node schemas
...
edgeConfig:
# Configure the first edge schema
- schema:
properties:
# Configure more edge schemas
...
- Congifure data fields under
properties
:
nodeConfig:
- schema:
properties:
# The first custom property
- name:
# The second custom property
- name:
# More custom properties
...
...
Example:
nodeConfig:
- schema: student
# export all properties of this schema when not specifying `properties`
- schema: course
properties:
- name: title
- name: credit
# System properties are auto-exported and do not need to be listed
edgeConfig:
# Star * denotes all properties of all schemas
- schema: "*"