This GraphQL query fetches All Fixed_Wing_Rotary_Wings
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
query allFixed_Wing_Rotary_Wings { fixed_Wing_Rotary_Wings (skip: 0, limit: 3) { results { ACL Aircraft_Model (skip: 0, limit: 3) { results { id } } Wing_Type createdAt id updatedAt } } }
{ "data": { "fixed_Wing_Rotary_Wings": { "results": [ { "ACL": null, "Aircraft_Model": { "results": [ { "id": "0iXK9BHmOW" }, { "id": "0tDCN8yN1z" }, { "id": "1AYNSrdpMh" } ] }, "Wing_Type": "Fixed Wing", "createdAt": "2020-01-29T14:07:21.741Z", "id": "evgVuPdJl7", "updatedAt": "2020-01-29T14:27:58.782Z" }, { "ACL": null, "Aircraft_Model": { "results": [ { "id": "5ans4nVWmL" }, { "id": "8B7SBq1zSh" }, { "id": "8udFVkDyuQ" } ] }, "Wing_Type": "Rotary Wing", "createdAt": "2020-01-29T14:07:29.882Z", "id": "s5zkbVd4CC", "updatedAt": "2020-01-29T14:29:01.781Z" } ] } } }