Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion content/_partials/authentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,3 @@ Requests can be authenticated in the following ways:
Using a query parameter for authentication can lead to it being revealed or logged. If possible, use another method.
::
::
::
1 change: 0 additions & 1 deletion content/guides/04.connect/2.filter-rules.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,6 @@ In the above, `categories` is the relational field in the collection. `_none` ch
```
::
::
::

::example
**Nested user and role variables in permissions**
Expand Down
2 changes: 0 additions & 2 deletions content/guides/04.connect/4.relations.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ use this same structure to select what the related items are:
```
::
::
::

You can also provide an object instead of a primary key in order to create new items nested on the fly, or an object
with a primary key included to update an existing item:
Expand Down Expand Up @@ -150,7 +149,6 @@ with a primary key included to update an existing item:
```
::
::
::

To remove items from this relationship, omit them from the array:

Expand Down
6 changes: 0 additions & 6 deletions content/guides/04.connect/6.sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,6 @@ The Directus SDK is a "Composable Client" that allows you to customize and build

::callout{icon="material-symbols:school-outline" color="secondary" to="/tutorials/tips-and-tricks/advanced-types-with-the-directus-sdk"}
Learn how to create a Schema for SDK client creation.
::
::
::


Expand Down Expand Up @@ -113,7 +111,6 @@ To call custom endpoints using the SDK, you can manually provide a path and meth
---
label: JavaScript
---

```js
import { createDirectus, rest } from '@directus/sdk';
const directus = createDirectus('http://directus.example.com').with(rest());
Expand All @@ -123,9 +120,7 @@ To call custom endpoints using the SDK, you can manually provide a path and meth
method: 'GET',
}));
```

::

::div{class="pr-6"}
---
label: TypeScript
Expand All @@ -139,7 +134,6 @@ To call custom endpoints using the SDK, you can manually provide a path and meth
method: 'GET',
}));
```
::
::

### GraphQL Usage
Expand Down