Simplify your stack and build anything. Or everything.
Build tomorrow’s web with a modern solution you truly own.
Code-based nature means you can build on top of it to power anything.
It’s time to take back your content infrastructure.

Depth

Documents in Payload can have relationships to other Documents. This is true for both Collections as well as Globals. When you query a Document, you can specify the depth at which to populate any of its related Documents either as full objects, or only their IDs.

Since Documents can be infinitely nested or recursively related, it's important to be able to control how deep your API populates. Depth can impact the performance of your queries by affecting the load on the database and the size of the response.

For example, when you specify a depth of 0, the API response might look like this:

1
{
2
"id": "5ae8f9bde69e394e717c8832",
3
"title": "This is a great post",
4
"author": "5f7dd05cd50d4005f8bcab17"
5
}

But with a depth of 1, the response might look like this:

1
{
2
"id": "5ae8f9bde69e394e717c8832",
3
"title": "This is a great post",
4
"author": {
5
"id": "5f7dd05cd50d4005f8bcab17",
6
"name": "John Doe"
7
}
8
}

Local API

To specify depth in the Local API, you can use the depth option in your query:

1
import type { Payload } from 'payload'
2
3
const getPosts = async (payload: Payload) => {
4
const posts = await payload.find({
5
collection: 'posts',
6
depth: 2,
7
})
8
9
return posts
10
}

REST API

To specify depth in the REST API, you can use the depth parameter in your query:

1
fetch('https://localhost:3000/api/posts?depth=2')
2
.then((res) => res.json())
3
.then((data) => console.log(data))

Default Depth

If no depth is specified in the request, Payload will use its default depth for all requests. By default, this is set to 2.

To change the default depth on the application level, you can use the defaultDepth option in your root Payload config:

1
import { buildConfig } from 'payload/config'
2
3
export default buildConfig({
4
// ...
5
defaultDepth: 1,
6
// ...
7
})

Max Depth

Fields like the Relationship Field or the Upload Field can also set a maximum depth. If exceeded, this will limit the population depth regardless of what the depth might be on the request.

To set a max depth for a field, use the maxDepth property in your field configuration:

1
{
2
slug: 'posts',
3
fields: [
4
{
5
name: 'author',
6
type: 'relationship',
7
relationTo: 'users',
8
maxDepth: 2,
9
}
10
]
11
}
Next

Pagination