This GraphQL query fetches All Cell_Phone_Models_By_Brands
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
query allCell_Phone_Models_By_Brands { cell_Phone_Models_By_Brands (skip: 0, limit: 3) { results { ACL Cell_Phone_Brand Cell_Phone_Models (skip: 0, limit: 3) { results { id } } createdAt id updatedAt } } }
{ "data": { "cell_Phone_Models_By_Brands": { "results": [ { "ACL": null, "Cell_Phone_Brand": "Accer", "Cell_Phone_Models": { "results": [ { "id": "10APhbtd3f" }, { "id": "3AtgVeEQSr" }, { "id": "3oFov13Did" } ] }, "createdAt": "2020-01-30T14:50:53.808Z", "id": "Xh8bBD07rY", "updatedAt": "2020-01-30T15:17:24.846Z" }, { "ACL": null, "Cell_Phone_Brand": "Alcatel", "Cell_Phone_Models": { "results": [ { "id": "0FcOudbzNl" }, { "id": "0IRHy1PjPo" }, { "id": "0W6UejESfU" } ] }, "createdAt": "2020-01-30T14:52:55.247Z", "id": "2IHDgUAaRP", "updatedAt": "2020-01-30T15:16:21.819Z" }, { "ACL": null, "Cell_Phone_Brand": "AllView", "Cell_Phone_Models": { "results": [ { "id": "0AmTuXpHiX" }, { "id": "0sCjxrqdjj" }, { "id": "1BAAChGXAz" } ] }, "createdAt": "2020-01-30T15:01:35.457Z", "id": "ahJPDloKIN", "updatedAt": "2020-01-30T15:11:17.502Z" } ] } } }