
Grab your gear: The official Sanity swag store
Read Grab your gear: The official Sanity swag storeYes, you can absolutely mix explicitly defined list items with a dynamic documentList in the same pane! This is a common pattern in the Structure Builder and exactly the kind of flexible organization it was designed to support.
Here's how you can achieve what you're describing - showing a "Categories" list item at the top, followed by all posts:
// sanity.config.ts
import {structureTool} from 'sanity/structure'
export default defineConfig({
plugins: [
structureTool({
structure: (S) =>
S.list()
.title('Content')
.items([
// Explicit list item for browsing by category
S.listItem()
.title('Posts by Category')
.child(
S.documentList()
.title('Categories')
.filter('_type == "category"')
),
// Divider for visual separation (optional)
S.divider(),
// All posts as a document list
...S.documentTypeListItems().filter(
listItem => listItem.getId() === 'post'
),
// Or you could be more explicit:
// S.documentTypeListItem('post').title('All Posts'),
// Add other document types
...S.documentTypeListItems().filter(
listItem => !['post', 'category'].includes(listItem.getId())
)
])
})
]
})The key insight is that the items array in S.list() accepts any combination of:
S.listItem() - Custom list items that can open child lists or documentsS.documentTypeListItem() - Convenience method for standard document type listsS.documentList() - Filtered document listsS.divider() - Visual separatorsYou can even get more creative by mixing in filtered document lists directly:
S.list()
.title('Posts')
.items([
// Browse by category
S.listItem()
.title('By Category')
.child(/* category browser */),
// Recently published
S.listItem()
.title('Recent Posts')
.child(
S.documentList()
.title('Recently Published')
.filter('_type == "post"')
.params({})
),
S.divider(),
// All posts
S.documentTypeListItem('post').title('All Posts')
])The Structure Builder is incredibly flexible - you're not limited to the default "drill down" pattern. You can flatten your structure, mix different types of navigation, and organize content however makes the most sense for your editors. The Structure Builder documentation has more examples of creative ways to organize your content.
Sanity is the developer-first content operating system that gives you complete control. Schema-as-code, GROQ queries, and real-time APIs mean no more workarounds or waiting for deployments. Free to start, scale as you grow.
Content operations
Content backend


The only platform powering content operations
By Industry


Tecovas strengthens their customer connections
Build and Share

Grab your gear: The official Sanity swag store
Read Grab your gear: The official Sanity swag store