-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.example.yaml
34 lines (30 loc) · 997 Bytes
/
config.example.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# run in debug mode to emit more debugging information
debug: false
# SPARQL endpoint and examples (required)
sparql:
endpoint: http://localhost:3030/n4o-rdf-import/
examples:
# examples given in files
- queries/*.rq
# example given in config file
- name: List all classes
query: |
SELECT DISTINCT ?class WHERE { [] a ?class } examples:
# Cypher endpoint and examples (optional)
cypher:
uri: bolt://localhost:7687
user: ""
password: ""
timeout: 30
examples:
- name: Get some people
query: "MATCH (n:E21_Person) RETURN n LIMIT 10"
- name: List all classes (= node labels)
query: "MATCH (n)\n RETURN distinct labels(n) AS classes, count(*) AS count"
# link to import stage directories (see n4o-rdf-import, optional)
stage: ./stage # this can be a symlink
# Links to tools and references (optional)
tools:
- name: LIDO-Schulung
url: https://docs.nfdi4culture.de/lido-schulung
description: Einführung in das LIDO-Format