Files
json-server/fixtures/db.json5
2026-01-18 00:14:56 +01:00

28 lines
365 B
Plaintext

{
posts: [
{
id: "1",
title: "a title",
},
{
id: "2",
title: "another title",
},
],
comments: [
{
id: "1",
text: "a comment about post 1",
postId: "1",
},
{
id: "2",
text: "another comment about post 1",
postId: "1",
},
],
profile: {
name: "typicode",
},
}