具有以下字段的内容类型“产品”:
string
标题int
数量string
描述double
价格
是否有 API 端点来检索“产品”内容类型的结构或架构,而不是获取值?
例如:在端点localhost:1337/products
上,响应可以是:
[
{
field: "title",
type: "string",
other: "col-xs-12, col-5"
},
{
field: "qty",
type: "int"
},
{
field: "description",
type: "string"
},
{
field: "price",
type: "double"
}
]
在哪里发送模式或表的结构而不是实际值?
如果不在 Strapi CMS 中,是否可以在 Hasura 和 Sanity 等其他无头 CMS 上实现?