The Database Hub | Back4App
The Database Hub | Back4App
How it works
  • Log In
  • Sign Up

  1. CubyCode
  2. iRestaurant | Universal Restaurant App Template for Android/iOS
Public

17
28
17
28
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All Menus

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"
        }
      ]
    }
  }
}