mirror of
https://github.com/wassname/talk.git
synced 2026-06-28 15:41:02 +08:00
44 lines
678 B
JSON
44 lines
678 B
JSON
{
|
|
"query": [
|
|
{
|
|
"item_id": "assetTest",
|
|
"type": "asset",
|
|
"data": {
|
|
"url": "http://coralproject.net"
|
|
},
|
|
"related": {
|
|
"comment": [
|
|
"abc",
|
|
"def"
|
|
]
|
|
}
|
|
},
|
|
{
|
|
"item_id": "abc",
|
|
"type": "comment",
|
|
"data": {
|
|
"content": "Sample comment"
|
|
},
|
|
"related":{
|
|
"child": [
|
|
"xyz"
|
|
]
|
|
}
|
|
},
|
|
{
|
|
"item_id": "xyz",
|
|
"type": "comment",
|
|
"data": {
|
|
"content": "Sample reply"
|
|
}
|
|
},
|
|
{
|
|
"item_id": "def",
|
|
"type": "comment",
|
|
"data": {
|
|
"content": "Another reply"
|
|
}
|
|
}
|
|
]
|
|
}
|