This GraphQL query fetches All Menus
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
query allMenus { menus (skip: 0, limit: 3) { results { ACL createdAt description id image { url name } name price updatedAt } } }
{ "data": { "menus": { "results": [ { "ACL": null, "createdAt": "2017-07-05T06:56:11.824Z", "description": "lorem ipsec dolor sit lorem", "id": "rYbO24Zy5D", "image": { "url": "https://parsefiles.back4app.com/cOV1o0Km3m8jnGg0xnVOA7lzdUshDLi5NoaJ9sTU/498cdd8316bf7e6302f6991bee2bac67_BX0213_Curried-Chicken-Salad_s4x3.jpg.rend.hgtvcom.616.462.jpg", "name": "498cdd8316bf7e6302f6991bee2bac67_BX0213_Curried-Chicken-Salad_s4x3.jpg.rend.hgtvcom.616.462.jpg" }, "name": "Chicken Curry Salad", "price": "$10", "updatedAt": "2017-07-05T08:58:57.079Z" }, { "ACL": null, "createdAt": "2017-07-05T08:58:18.858Z", "description": "lorem ipsec dolor sit lorem ipsec", "id": "xZ7RoZBEJf", "image": { "url": "https://parsefiles.back4app.com/cOV1o0Km3m8jnGg0xnVOA7lzdUshDLi5NoaJ9sTU/12b6c891bd349b64441a69cdb68a60b2_9-2.jpg", "name": "12b6c891bd349b64441a69cdb68a60b2_9-2.jpg" }, "name": "Delicious Salad", "price": "$15", "updatedAt": "2017-07-05T08:58:18.858Z" }, { "ACL": null, "createdAt": "2017-07-05T08:58:49.270Z", "description": "lorem ipsec dolor sit lorem", "id": "yhtEHYBmDM", "image": { "url": "https://parsefiles.back4app.com/cOV1o0Km3m8jnGg0xnVOA7lzdUshDLi5NoaJ9sTU/fb700ded5e4ddbea6308bac0dab5f519_8-2.jpg", "name": "fb700ded5e4ddbea6308bac0dab5f519_8-2.jpg" }, "name": "Delicious Fish", "price": "$21", "updatedAt": "2017-07-05T08:58:49.270Z" } ] } } }