Skip to content

Instantly share code, notes, and snippets.

@MastaAaron
MastaAaron / category-schema.js
Last active May 20, 2023 09:50
Sanity CMS: Infinitely-nestable Categories
export default {
name: `category`,
title: `Category`,
type: `document`,
fields: [
{
name: `name`,
title: `Category Name`,
type: `string`,
validation: Rule => Rule.required()