Remove extra comma (#97)
Browse files- README.md +11 -0
- ancient-greek.yaml +1 -1
- docs/but.png +0 -0
README.md
CHANGED
@@ -143,6 +143,17 @@ We have offered some queries that can be used to quickly explore the vocabulary
|
|
143 |
![Declension sharing](docs/german-rice-travel.png "Error loading german-rice-travel.png")
|
144 |
|
145 |
- `MATCH (term:Term{label:'die Schwester'}) CALL apoc.path.expand(term, "LINK", null, 1, -1) YIELD path RETURN path, length(path) AS hops ORDER BY hops;`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
146 |
|
147 |
Development
|
148 |
-----------
|
|
|
143 |
![Declension sharing](docs/german-rice-travel.png "Error loading german-rice-travel.png")
|
144 |
|
145 |
- `MATCH (term:Term{label:'die Schwester'}) CALL apoc.path.expand(term, "LINK", null, 1, -1) YIELD path RETURN path, length(path) AS hops ORDER BY hops;`
|
146 |
+
- How German, Latin, and Ancient greek expresses the conjunction "but":
|
147 |
+
|
148 |
+
```cypher
|
149 |
+
MATCH (node{label:'δέ'})
|
150 |
+
CALL apoc.path.expand(node, "LINK", null, 1, 4)
|
151 |
+
YIELD path
|
152 |
+
RETURN path, length(path) AS hops
|
153 |
+
ORDER BY hops;
|
154 |
+
```
|
155 |
+
|
156 |
+
![Conjuction - but](docs/but.png "Error loading but.png")
|
157 |
|
158 |
Development
|
159 |
-----------
|
ancient-greek.yaml
CHANGED
@@ -689,7 +689,7 @@ vocabulary:
|
|
689 |
- (part.) accordingly
|
690 |
- term: δέ
|
691 |
definition:
|
692 |
-
- (part. & conj.) and
|
693 |
- (part. & conj.) but
|
694 |
- term: δ’
|
695 |
definition: (Apocopic form of) δέ
|
|
|
689 |
- (part.) accordingly
|
690 |
- term: δέ
|
691 |
definition:
|
692 |
+
- (part. & conj.) and
|
693 |
- (part. & conj.) but
|
694 |
- term: δ’
|
695 |
definition: (Apocopic form of) δέ
|
docs/but.png
ADDED