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

  1. AeroApps Pro
  2. Trisamuraya - App for Sushi Restaurants
Public

12
10
12
10
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All Cities

This GraphQL query fetches All Cities


0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
query allCities {
      cities (skip: 0, limit: 3) {
        results {
          ACL
          address
          cloudPaymentsId
          createdAt
          curency
          currency
          deliveryAreas
          deliveryPrice
          deliveryText
          deliveryTime
          digitsAfterCode
          discount
          freeDeliveryMinPrice
          id
          inst
          isAndroidPay
          isIosPay
          isMultiLang
          isPointsEnabled
          isSitePay
          legalInfo
          minimal
          name
          phoneCode
          phone_1
          phone_2
          pointsDiscount
          reglament
          rest_from {
              ...on Element {
              value
            }
          }
          site_contacts_map
          site_delivery_map
          text_1
          text_2
          timeEnd
          timeStart
          updatedAt
          utcTimeHoursOffset
          utcTimeMinutesOffset
          vk
        }
      }
    }
{
  "data": {
    "cities": {
      "results": []
    }
  }
}