How to display the author as well as the blogs written by the author from sanity?

Viewed 14

name: "blogs", title: "Blogs", type: "document", fields: [ { name: "title", type: "string", title: "Title", }, { name: "subtitle", type: "string", title: "Subtitle", }, { name: "author", title: "Author", type: "reference", to: [{ type: "author" }], validation: (Rule) => Rule.required(), },

0 Answers
Related