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

  1. Back4App
  2. Aircraft Models, Makers, and Countries
Public

140
112
140
112
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All Aircraft_Manufacturer_by_Countries

This GraphQL query fetches All Aircraft_Manufacturer_by_Countries


0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
query allAircraft_Manufacturer_by_Countries {
      aircraft_Manufacturer_by_Countries (skip: 0, limit: 3) {
        results {
          ACL
          Country {
            id
          }
          CountryName
          Manufacturers (skip: 0, limit: 3) {
            results {
              id
            }
          }
          createdAt
          id
          updatedAt
        }
      }
    }
{
  "data": {
    "aircraft_Manufacturer_by_Countries": {
      "results": [
        {
          "ACL": null,
          "Country": {
            "id": "BXkZTl2omc"
          },
          "CountryName": "USA",
          "Manufacturers": {
            "results": [
              {
                "id": "2nums1uWWN"
              },
              {
                "id": "4JUSgjDB9I"
              },
              {
                "id": "8q2efOAmiB"
              }
            ]
          },
          "createdAt": "2020-01-29T15:35:08.304Z",
          "id": "qCSyyQND24",
          "updatedAt": "2020-01-29T15:56:59.124Z"
        },
        {
          "ACL": null,
          "Country": {
            "id": "vBQFvgbzPX"
          },
          "CountryName": "France",
          "Manufacturers": {
            "results": [
              {
                "id": "3U16JN6hEf"
              },
              {
                "id": "5lSUdoUKe0"
              },
              {
                "id": "6pFSgjNx6v"
              }
            ]
          },
          "createdAt": "2020-01-29T15:35:33.464Z",
          "id": "2hFg28DzwC",
          "updatedAt": "2020-01-29T15:50:02.477Z"
        },
        {
          "ACL": null,
          "Country": {
            "id": "asMYxtQNZx"
          },
          "CountryName": "United Kingdom",
          "Manufacturers": {
            "results": [
              {
                "id": "02LxwYgIgd"
              },
              {
                "id": "2KIYN4WCnr"
              },
              {
                "id": "EZLIJ3KIeJ"
              }
            ]
          },
          "createdAt": "2020-01-29T15:35:48.285Z",
          "id": "yXHSDHVgpp",
          "updatedAt": "2020-01-29T15:57:45.239Z"
        }
      ]
    }
  }
}