This GraphQL query fetches All Aircraft_Manufacturers
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
query allAircraft_Manufacturers { aircraft_Manufacturers (skip: 0, limit: 3) { results { ACL Aircraft_Model (skip: 0, limit: 3) { results { id } } Country { id } Manufacturer createdAt id updatedAt } } }
{ "data": { "aircraft_Manufacturers": { "results": [ { "ACL": null, "Aircraft_Model": { "results": [ { "id": "Fq73SXVoSP" }, { "id": "SlfemlZNHI" } ] }, "Country": { "id": "BXkZTl2omc" }, "Manufacturer": "Champion Aircraft Corporation", "createdAt": "2020-01-29T01:15:54.817Z", "id": "q0zWxxekd6", "updatedAt": "2020-01-29T15:09:25.408Z" }, { "ACL": null, "Aircraft_Model": { "results": [ { "id": "BxLlVmAlUV" }, { "id": "RypjJ53oEC" }, { "id": "tmOv5OWQDG" } ] }, "Country": { "id": "BXkZTl2omc" }, "Manufacturer": "Beechcraft", "createdAt": "2020-01-29T01:15:54.817Z", "id": "B3DquHibv9", "updatedAt": "2020-01-29T14:57:48.496Z" }, { "ACL": null, "Aircraft_Model": { "results": [ { "id": "Vv5vTx6M1G" }, { "id": "ioeTdDRqUt" }, { "id": "xl2bu30wdj" } ] }, "Country": { "id": "BXkZTl2omc" }, "Manufacturer": "Bell", "createdAt": "2020-01-29T01:15:54.817Z", "id": "FPFiZW5aZC", "updatedAt": "2020-01-29T14:57:32.729Z" } ] } } }