This GraphQL query fetches All tokyoolympicsvenues
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
query allTokyoolympicsvenues { tokyoolympicsvenues (skip: 0, limit: 3) { results { ACL Address Category City Country Number Remarks VenueName createdAt id updatedAt } } }
{ "data": { "tokyoolympicsvenues": { "results": [ { "ACL": null, "Address": "2 Chome-1-1 Jinnan, Shibuya City, Tokyo 150-0041, Japan", "Category": "Handball", "City": "Tokyo", "Country": "Japan", "Number": 3, "Remarks": null, "VenueName": "Yoyogi National Stadium", "createdAt": "2020-01-23T19:38:10.702Z", "id": "bstVDdcvYs", "updatedAt": "2020-01-23T19:38:10.702Z" }, { "ACL": null, "Address": "10-2, Kasumigaoka-machi, Shinjuku, Tokyo, Japan", "Category": "Athletics", "City": "Tokyo", "Country": "Japan", "Number": 1, "Remarks": "Opening, Closing Ceremonies, and Soccer", "VenueName": "Olympic Stadium", "createdAt": "2020-01-23T19:38:10.702Z", "id": "2GGNp2C2pY", "updatedAt": "2020-01-23T19:38:10.702Z" }, { "ACL": null, "Address": "1 Chome-11 Ariake, Koto City, Tokyo 135-0063, Japan", "Category": "Volleyball", "City": "Tokyo", "Country": "Japan", "Number": 11, "Remarks": null, "VenueName": "Ariake Arena", "createdAt": "2020-01-23T19:38:10.702Z", "id": "VSEGONvmP7", "updatedAt": "2020-01-23T19:38:10.702Z" } ] } } }