Skip to content

Commit e05f3ac

Browse files
committed
Clean up heading levels
1 parent 784d945 commit e05f3ac

File tree

1 file changed

+44
-44
lines changed

1 file changed

+44
-44
lines changed

README.md

Lines changed: 44 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -190,19 +190,19 @@ try {
190190
* [collection.update](#collectionupdate)
191191
* [collection.remove](#collectionremove)
192192
* [collection.list](#collectionlist)
193-
* [DocumentCollection API](#documentcollection-api)
194-
* [documentCollection.document](#documentcollectiondocument)
195-
* [documentCollection.save](#documentcollectionsave)
196-
* [EdgeCollection API](#edgecollection-api)
197-
* [edgeCollection.edge](#edgecollectionedge)
198-
* [edgeCollection.save](#edgecollectionsave)
199-
* [edgeCollection.edges](#edgecollectionedges)
200-
* [edgeCollection.inEdges](#edgecollectioninedges)
201-
* [edgeCollection.outEdges](#edgecollectionoutedges)
202-
* [edgeCollection.traversal](#edgecollectiontraversal)
193+
* [DocumentCollection API](#documentcollection-api)
194+
* [documentCollection.document](#documentcollectiondocument)
195+
* [documentCollection.save](#documentcollectionsave)
196+
* [EdgeCollection API](#edgecollection-api)
197+
* [edgeCollection.edge](#edgecollectionedge)
198+
* [edgeCollection.save](#edgecollectionsave)
199+
* [edgeCollection.edges](#edgecollectionedges)
200+
* [edgeCollection.inEdges](#edgecollectioninedges)
201+
* [edgeCollection.outEdges](#edgecollectionoutedges)
202+
* [edgeCollection.traversal](#edgecollectiontraversal)
203203
* [Graph API](#graph-api)
204-
* [graph.get](#graphget)
205-
* [graph.create](#graphcreate)
204+
* [graph.get](#graphget)
205+
* [graph.create](#graphcreate)
206206
* [graph.drop](#graphdrop)
207207
* [Manipulating vertices](#manipulating-vertices)
208208
* [graph.vertexCollection](#graphvertexcollection)
@@ -214,16 +214,16 @@ try {
214214
* [graph.replaceEdgeDefinition](#graphreplaceedgedefinition)
215215
* [graph.removeEdgeDefinition](#graphremoveedgedefinition)
216216
* [graph.traversal](#graphtraversal)
217-
* [GraphVertexCollection API](#graphvertexcollection-api)
218-
* [graphVertexCollection.vertex](#graphvertexcollectionvertex)
219-
* [graphVertexCollection.save](#graphvertexcollectionsave)
220-
* [GraphEdgeCollection API](#graphedgecollection-api)
221-
* [graphEdgeCollection.edge](#graphedgecollectionedge)
222-
* [graphEdgeCollection.save](#graphedgecollectionsave)
223-
* [graphEdgeCollection.edges](#graphedgecollectionedges)
224-
* [graphEdgeCollection.inEdges](#graphedgecollectioninedges)
225-
* [graphEdgeCollection.outEdges](#graphedgecollectionoutedges)
226-
* [graphEdgeCollection.traversal](#graphedgecollectiontraversal)
217+
* [GraphVertexCollection API](#graphvertexcollection-api)
218+
* [graphVertexCollection.vertex](#graphvertexcollectionvertex)
219+
* [graphVertexCollection.save](#graphvertexcollectionsave)
220+
* [GraphEdgeCollection API](#graphedgecollection-api)
221+
* [graphEdgeCollection.edge](#graphedgecollectionedge)
222+
* [graphEdgeCollection.save](#graphedgecollectionsave)
223+
* [graphEdgeCollection.edges](#graphedgecollectionedges)
224+
* [graphEdgeCollection.inEdges](#graphedgecollectioninedges)
225+
* [graphEdgeCollection.outEdges](#graphedgecollectionoutedges)
226+
* [graphEdgeCollection.traversal](#graphedgecollectiontraversal)
227227

228228
## Database API
229229

@@ -2687,11 +2687,11 @@ Retrieves a list of references for all documents in the collection.
26872687
* if *type* is set to `"key"`, each reference will be the `_key` of the document.
26882688
* if *type* is set to `"path"`, each reference will be the URI path of the document.
26892689
2690-
### DocumentCollection API
2690+
## DocumentCollection API
26912691
26922692
The *DocumentCollection API* extends the [*Collection API* (see above)](#collection-api) with the following methods.
26932693
2694-
#### documentCollection.document
2694+
### documentCollection.document
26952695
26962696
`async documentCollection.document(documentHandle): Object`
26972697
@@ -2726,7 +2726,7 @@ collection.document('my-docs/some-key')
27262726
});
27272727
```
27282728
2729-
#### documentCollection.save
2729+
### documentCollection.save
27302730
27312731
`async documentCollection.save(data): Object`
27322732
@@ -2757,11 +2757,11 @@ collection.save(doc)
27572757
});
27582758
```
27592759
2760-
### EdgeCollection API
2760+
## EdgeCollection API
27612761
27622762
The *EdgeCollection API* extends the [*Collection API* (see above)](#collection-api) with the following methods.
27632763
2764-
#### edgeCollection.edge
2764+
### edgeCollection.edge
27652765
27662766
`async edgeCollection.edge(documentHandle): Object`
27672767
@@ -2796,7 +2796,7 @@ collection.edge('edges/some-key')
27962796
});
27972797
```
27982798
2799-
#### edgeCollection.save
2799+
### edgeCollection.save
28002800
28012801
`async edgeCollection.save(data, [fromId, toId]): Object`
28022802
@@ -2853,7 +2853,7 @@ collection.save({
28532853
})
28542854
```
28552855
2856-
#### edgeCollection.edges
2856+
### edgeCollection.edges
28572857
28582858
`async edgeCollection.edges(documentHandle): Array<Object>`
28592859
@@ -2883,7 +2883,7 @@ collection.import([
28832883
});
28842884
```
28852885
2886-
#### edgeCollection.inEdges
2886+
### edgeCollection.inEdges
28872887
28882888
`async edgeCollection.inEdges(documentHandle): Array<Object>`
28892889
@@ -2913,7 +2913,7 @@ collection.import([
29132913
});
29142914
```
29152915
2916-
#### edgeCollection.outEdges
2916+
### edgeCollection.outEdges
29172917
29182918
`async edgeCollection.outEdges(documentHandle): Array<Object>`
29192919
@@ -2943,7 +2943,7 @@ collection.import([
29432943
});
29442944
```
29452945
2946-
#### edgeCollection.traversal
2946+
### edgeCollection.traversal
29472947
29482948
`async edgeCollection.traversal(startVertex, opts): Object`
29492949
@@ -2986,7 +2986,7 @@ collection.import([
29862986
29872987
These functions implement the [HTTP API for manipulating graphs](https://docs.arangodb.com/HttpGharial/index.html).
29882988
2989-
#### graph.get
2989+
### graph.get
29902990
29912991
`async graph.get(): Object`
29922992
@@ -3003,7 +3003,7 @@ graph.get()
30033003
});
30043004
```
30053005
3006-
#### graph.create
3006+
### graph.create
30073007
30083008
`async graph.create(properties): Object`
30093009
@@ -3308,11 +3308,11 @@ collection.import([
33083308
});
33093309
```
33103310
3311-
### GraphVertexCollection API
3311+
## GraphVertexCollection API
33123312
33133313
The *GraphVertexCollection API* extends the [*Collection API* (see above)](#collection-api) with the following methods.
33143314
3315-
#### graphVertexCollection.vertex
3315+
### graphVertexCollection.vertex
33163316
33173317
`async graphVertexCollection.vertex(documentHandle): Object`
33183318
@@ -3347,7 +3347,7 @@ collection.vertex('vertices/some-key')
33473347
});
33483348
```
33493349
3350-
#### graphVertexCollection.save
3350+
### graphVertexCollection.save
33513351
33523352
`async graphVertexCollection.save(data): Object`
33533353
@@ -3373,11 +3373,11 @@ collection.save({some: 'data'})
33733373
});
33743374
```
33753375
3376-
### GraphEdgeCollection API
3376+
## GraphEdgeCollection API
33773377
33783378
The *GraphEdgeCollection API* extends the *Collection API* (see above) with the following methods.
33793379
3380-
#### graphEdgeCollection.edge
3380+
### graphEdgeCollection.edge
33813381
33823382
`async graphEdgeCollection.edge(documentHandle): Object`
33833383
@@ -3412,7 +3412,7 @@ collection.edge('edges/some-key')
34123412
});
34133413
```
34143414
3415-
#### graphEdgeCollection.save
3415+
### graphEdgeCollection.save
34163416
34173417
`async graphEdgeCollection.save(data, [fromId, toId]): Object`
34183418
@@ -3452,7 +3452,7 @@ collection.save(
34523452
});
34533453
```
34543454
3455-
#### graphEdgeCollection.edges
3455+
### graphEdgeCollection.edges
34563456
34573457
`async graphEdgeCollection.edges(documentHandle): Array<Object>`
34583458
@@ -3483,7 +3483,7 @@ collection.import([
34833483
});
34843484
```
34853485
3486-
#### graphEdgeCollection.inEdges
3486+
### graphEdgeCollection.inEdges
34873487
34883488
`async graphEdgeCollection.inEdges(documentHandle): Array<Object>`
34893489
@@ -3514,7 +3514,7 @@ collection.import([
35143514
});
35153515
```
35163516
3517-
#### graphEdgeCollection.outEdges
3517+
### graphEdgeCollection.outEdges
35183518
35193519
`async graphEdgeCollection.outEdges(documentHandle): Array<Object>`
35203520
@@ -3545,7 +3545,7 @@ collection.import([
35453545
});
35463546
```
35473547
3548-
#### graphEdgeCollection.traversal
3548+
### graphEdgeCollection.traversal
35493549
35503550
`async graphEdgeCollection.traversal(startVertex, opts): Object`
35513551

0 commit comments

Comments
 (0)