mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 04:51:35 +03:00
13 lines
656 B
JSON
13 lines
656 B
JSON
{
|
|
"user": [
|
|
{ "id": 456, "name": "Sita K", "address": {"country": "India"}},
|
|
{ "id": 123, "name": "John Doe", "address":{"street": "Sesame street", "city":"Timbuktoo", "country": "Mali" }}
|
|
],
|
|
"post": [
|
|
{ "id": 1, "title": "My first article - user 123", "views": 254, "user_id": 123, "is_published": true },
|
|
{ "id": 2, "title": "My first article - user 456", "views": 54, "user_id": 456, "is_published": true},
|
|
{ "id": 3, "title": "My second article - user 123", "views": 65, "user_id": 123, "is_published": false},
|
|
{ "id": 4, "title": "My second article - user 456", "views": 565, "user_id": 456, "is_published": false}
|
|
]
|
|
}
|