Skip to content

Commit 2fead12

Browse files
fix paths
1 parent 23075a8 commit 2fead12

File tree

12 files changed

+41
-41
lines changed

12 files changed

+41
-41
lines changed

modus/sdk/assemblyscript/collections.mdx

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ collections.upsert(
4848

4949
<ResponseField name="collection" type="string" required>
5050
Name of the collection, as [defined in the
51-
manifest](../app-manifest#collections).
51+
manifest](../../app-manifest#collections).
5252
</ResponseField>
5353

5454
<ResponseField name="key" type="string">
@@ -90,7 +90,7 @@ collections.upsertBatch(
9090

9191
<ResponseField name="collection" type="string" required>
9292
Name of the collection, as [defined in the
93-
manifest](../app-manifest#collections).
93+
manifest](../../app-manifest#collections).
9494
</ResponseField>
9595

9696
<ResponseField name="keys" type="string[]">
@@ -125,7 +125,7 @@ collections.remove(
125125

126126
<ResponseField name="collection" type="string" required>
127127
Name of the collection, as [defined in the
128-
manifest](../app-manifest#collections).
128+
manifest](../../app-manifest#collections).
129129
</ResponseField>
130130

131131
<ResponseField name="key" type="string" required>
@@ -162,7 +162,7 @@ collections.search(
162162

163163
<ResponseField name="collection" type="string" required>
164164
Name of the collection, as [defined in the
165-
manifest](../app-manifest#collections).
165+
manifest](../../app-manifest#collections).
166166
</ResponseField>
167167

168168
<ResponseField name="searchMethod" type="string" required>
@@ -209,7 +209,7 @@ collections.searchByVector(
209209

210210
<ResponseField name="collection" type="string" required>
211211
Name of the collection, as [defined in the
212-
manifest](../app-manifest#collections).
212+
manifest](../../app-manifest#collections).
213213
</ResponseField>
214214

215215
<ResponseField name="searchMethod" type="string" required>
@@ -247,7 +247,7 @@ Classify an item in the collection using previous vectors' labels.
247247

248248
<ResponseField name="collection" type="string" required>
249249
Name of the collection, as [defined in the
250-
manifest](../app-manifest#collections).
250+
manifest](../../app-manifest#collections).
251251
</ResponseField>
252252

253253
<ResponseField name="searchMethod" type="string" required>
@@ -280,7 +280,7 @@ collections.computeDistance(
280280

281281
<ResponseField name="collection" type="string" required>
282282
Name of the collection, as [defined in the
283-
manifest](../app-manifest#collections).
283+
manifest](../../app-manifest#collections).
284284
</ResponseField>
285285

286286
<ResponseField name="searchMethod" type="string" required>
@@ -310,7 +310,7 @@ collections.getText(
310310

311311
<ResponseField name="collection" type="string" required>
312312
Name of the collection, as [defined in the
313-
manifest](../app-manifest#collections).
313+
manifest](../../app-manifest#collections).
314314
</ResponseField>
315315

316316
<ResponseField name="key" type="string" required>
@@ -336,7 +336,7 @@ collections.getTexts(
336336

337337
<ResponseField name="collection" type="string" required>
338338
Name of the collection, as [defined in the
339-
manifest](../app-manifest#collections).
339+
manifest](../../app-manifest#collections).
340340
</ResponseField>
341341

342342
<ResponseField name="namespace" type="string">
@@ -356,7 +356,7 @@ collections.getNamespaces(
356356

357357
<ResponseField name="collection" type="string" required>
358358
Name of the collection, as [defined in the
359-
manifest](../app-manifest#collections).
359+
manifest](../../app-manifest#collections).
360360
</ResponseField>
361361

362362
#### getVector
@@ -374,7 +374,7 @@ collections.getVector(
374374

375375
<ResponseField name="collection" type="string" required>
376376
Name of the collection, as [defined in the
377-
manifest](../app-manifest#collections).
377+
manifest](../../app-manifest#collections).
378378
</ResponseField>
379379

380380
<ResponseField name="searchMethod" type="string" required>
@@ -404,7 +404,7 @@ collections.getLabels(
404404

405405
<ResponseField name="collection" type="string" required>
406406
Name of the collection, as [defined in the
407-
manifest](../app-manifest#collections).
407+
manifest](../../app-manifest#collections).
408408
</ResponseField>
409409

410410
<ResponseField name="key" type="string" required>
@@ -435,7 +435,7 @@ collections.recomputeSearchMethod(
435435

436436
<ResponseField name="collection" type="string" required>
437437
Name of the collection, as [defined in the
438-
manifest](../app-manifest#collections).
438+
manifest](../../app-manifest#collections).
439439
</ResponseField>
440440

441441
<ResponseField name="searchMethod" type="string" required>

modus/sdk/assemblyscript/dgraph.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ function execute(connectionName: string, request: Request): Response
3838

3939
<ResponseField name="connectionName" type="string" required>
4040
Name of the connection, as [defined in the
41-
manifest](../app-manifest#connections).
41+
manifest](../../app-manifest#connections).
4242
</ResponseField>
4343

4444
<ResponseField name="request" type="Request" required>
@@ -56,7 +56,7 @@ function alterSchema(connectionName: string, schema: string): string
5656

5757
<ResponseField name="connectionName" type="string" required>
5858
Name of the connection, as [defined in the
59-
manifest](../app-manifest#connections).
59+
manifest](../../app-manifest#connections).
6060
</ResponseField>
6161

6262
<ResponseField name="schema" type="string" required>
@@ -73,7 +73,7 @@ function dropAttr(connectionName: string, attr: string): string
7373

7474
<ResponseField name="connectionName" type="string" required>
7575
Name of the connection, as [defined in the
76-
manifest](../app-manifest#connections).
76+
manifest](../../app-manifest#connections).
7777
</ResponseField>
7878

7979
<ResponseField name="attr" type="string" required>
@@ -90,7 +90,7 @@ function dropAll(connectionName: string): string
9090

9191
<ResponseField name="connectionName" type="string" required>
9292
Name of the connection, as [defined in the
93-
manifest](../app-manifest#connections).
93+
manifest](../../app-manifest#connections).
9494
</ResponseField>
9595

9696
### Objects

modus/sdk/assemblyscript/graphql.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ and maps.
5959

6060
<ResponseField name="connection" type="string" required>
6161
Name of the connection, as [defined in the
62-
manifest](../app-manifest#connection).
62+
manifest](../../app-manifest#connection).
6363
</ResponseField>
6464

6565
<ResponseField name="statement" type="string" required>

modus/sdk/assemblyscript/http.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ JavaScript, but with some modifications to work with Hypermode Functions.
1414

1515
<Note>
1616
As a security measure, you can only call HTTP endpoints that you
17-
[defined in your app's manifest](../app-manifest#connections). Any attempt to access an arbitrary URL, for a connection not
17+
[defined in your app's manifest](../../app-manifest#connections). Any attempt to access an arbitrary URL, for a connection not
1818
defined in your app's manifest, results in an error.
1919

2020
Additionally, you should use placeholders for connection secrets in the

modus/sdk/assemblyscript/neo4j.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ func ExecuteQuery(connectionName, query string, parameters map[string]any, opts
3838

3939
<ResponseField name="connectionName" type="string" required>
4040
Name of the connection, as [defined in the
41-
manifest](../app-manifest#connections).
41+
manifest](../../app-manifest#connections).
4242
</ResponseField>
4343

4444
<ResponseField name="query" type="string" required>

modus/sdk/assemblyscript/postgresql.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function postgresql.execute (
5151

5252
<ResponseField name="connectionName" type="string" required>
5353
Name of the connection, as [defined in the
54-
manifest](../app-manifest#connections).
54+
manifest](../../app-manifest#connections).
5555
</ResponseField>
5656

5757
<ResponseField name="statement" type="string" required>
@@ -104,7 +104,7 @@ or [`Location`](#location) object to represent the data.
104104

105105
<ResponseField name="connectionName" type="string" required>
106106
Name of the connection, as [defined in the
107-
manifest](../app-manifest#connections).
107+
manifest](../../app-manifest#connections).
108108
</ResponseField>
109109

110110
<ResponseField name="statement" type="string" required>
@@ -146,7 +146,7 @@ function postgresql.queryScalar<T> (
146146

147147
<ResponseField name="connectionName" type="string" required>
148148
Name of the connection, as [defined in the
149-
manifest](../app-manifest#connections).
149+
manifest](../../app-manifest#connections).
150150
</ResponseField>
151151

152152
<ResponseField name="statement" type="string" required>

modus/sdk/go/collections.mdx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ collections.upsert(
4848

4949
<ResponseField name="collection" type="string" required>
5050
Name of the collection, as [defined in the
51-
manifest](../app-manifest#collections).
51+
manifest](../../app-manifest#collections).
5252
</ResponseField>
5353

5454
<ResponseField name="key" type="string">
@@ -90,7 +90,7 @@ collections.upsertBatch(
9090

9191
<ResponseField name="collection" type="string" required>
9292
Name of the collection, as [defined in the
93-
manifest](../app-manifest#collections).
93+
manifest](../../app-manifest#collections).
9494
</ResponseField>
9595

9696
<ResponseField name="keys" type="string[]">
@@ -125,7 +125,7 @@ collections.remove(
125125

126126
<ResponseField name="collection" type="string" required>
127127
Name of the collection, as [defined in the
128-
manifest](../app-manifest#collections).
128+
manifest](../../app-manifest#collections).
129129
</ResponseField>
130130

131131
<ResponseField name="key" type="string" required>
@@ -162,7 +162,7 @@ collections.search(
162162

163163
<ResponseField name="collection" type="string" required>
164164
Name of the collection, as [defined in the
165-
manifest](../app-manifest#collections).
165+
manifest](../../app-manifest#collections).
166166
</ResponseField>
167167

168168
<ResponseField name="searchMethod" type="string" required>
@@ -209,7 +209,7 @@ collections.searchByVector(
209209

210210
<ResponseField name="collection" type="string" required>
211211
Name of the collection, as [defined in the
212-
manifest](../app-manifest#collections).
212+
manifest](../../app-manifest#collections).
213213
</ResponseField>
214214

215215
<ResponseField name="searchMethod" type="string" required>
@@ -247,7 +247,7 @@ Classify an item in the collection using previous vectors' labels.
247247

248248
<ResponseField name="collection" type="string" required>
249249
Name of the collection, as [defined in the
250-
manifest](../app-manifest#collections).
250+
manifest](../../app-manifest#collections).
251251
</ResponseField>
252252

253253
<ResponseField name="searchMethod" type="string" required>
@@ -310,7 +310,7 @@ collections.getText(
310310

311311
<ResponseField name="collection" type="string" required>
312312
Name of the collection, as [defined in the
313-
manifest](../app-manifest#collections).
313+
manifest](../../app-manifest#collections).
314314
</ResponseField>
315315

316316
<ResponseField name="key" type="string" required>
@@ -374,7 +374,7 @@ collections.getVector(
374374

375375
<ResponseField name="collection" type="string" required>
376376
Name of the collection, as [defined in the
377-
manifest](../app-manifest#collections).
377+
manifest](../../app-manifest#collections).
378378
</ResponseField>
379379

380380
<ResponseField name="searchMethod" type="string" required>
@@ -435,7 +435,7 @@ collections.recomputeSearchMethod(
435435

436436
<ResponseField name="collection" type="string" required>
437437
Name of the collection, as [defined in the
438-
manifest](../app-manifest#collections).
438+
manifest](../../app-manifest#collections).
439439
</ResponseField>
440440

441441
<ResponseField name="searchMethod" type="string" required>

modus/sdk/go/dgraph.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ function execute(connectionName: string, request: Request): Response;
3838

3939
<ResponseField name="connectionName" type="string" required>
4040
Name of the connection, as [defined in the
41-
manifest](../app-manifest#connections).
41+
manifest](../../app-manifest#connections).
4242
</ResponseField>
4343

4444
<ResponseField name="request" type="Request" required>
@@ -56,7 +56,7 @@ function alterSchema(connectionName: string, schema: string): string;
5656

5757
<ResponseField name="connectionName" type="string" required>
5858
Name of the connection, as [defined in the
59-
manifest](../app-manifest#connections).
59+
manifest](../../app-manifest#connections).
6060
</ResponseField>
6161

6262
<ResponseField name="schema" type="string" required>
@@ -73,7 +73,7 @@ function dropAttr(connectionName: string, attr: string): string;
7373

7474
<ResponseField name="connectionName" type="string" required>
7575
Name of the connection, as [defined in the
76-
manifest](../app-manifest#connections).
76+
manifest](../../app-manifest#connections).
7777
</ResponseField>
7878

7979
<ResponseField name="attr" type="string" required>
@@ -90,7 +90,7 @@ function dropAll(connectionName: string): string;
9090

9191
<ResponseField name="connectionName" type="string" required>
9292
Name of the connection, as [defined in the
93-
manifest](../app-manifest#connections).
93+
manifest](../../app-manifest#connections).
9494
</ResponseField>
9595

9696
### Objects

modus/sdk/go/graphql.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ and maps.
5959

6060
<ResponseField name="connection" type="string" required>
6161
Name of the connection, as [defined in the
62-
manifest](../app-manifest#connection).
62+
manifest](../../app-manifest#connection).
6363
</ResponseField>
6464

6565
<ResponseField name="statement" type="string" required>

modus/sdk/go/http.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ JavaScript, but with some modifications to work with Hypermode Functions.
1414

1515
<Note>
1616
As a security measure, you can only call HTTP endpoints that you
17-
[defined in your app's manifest](../app-manifest#connections). Any attempt to access an arbitrary URL, for a connection not
17+
[defined in your app's manifest](../../app-manifest#connections). Any attempt to access an arbitrary URL, for a connection not
1818
defined in your app's manifest, results in an error.
1919

2020
Additionally, you should use placeholders for connection secrets in the

0 commit comments

Comments
 (0)