This GraphQL query fetches All FeatureCodes
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
query allFeatureCodes { featureCodes (skip: 0, limit: 3) { results { ACL createdAt featureClass { id } featureCode id longDescription places (skip: 0, limit: 3) { results { id } } shortDescription updatedAt } } }
{ "data": { "featureCodes": { "results": [ { "ACL": null, "createdAt": "2020-06-08T17:53:58.392Z", "featureClass": { "id": "yMKulpQAmm" }, "featureCode": "ADM1", "id": "7fCQGBKCL1", "longDescription": "a primary administrative division of a country, such as a state in the United States", "places": { "results": [ { "id": "YQB6OzbyEW" } ] }, "shortDescription": "first-order administrative division", "updatedAt": "2020-06-10T01:52:46.907Z" }, { "ACL": null, "createdAt": "2020-06-08T17:55:15.280Z", "featureClass": { "id": "QYZkvHDkSC" }, "featureCode": "OVF", "id": "4NrWnZd3EJ", "longDescription": "an area of breaking waves caused by the meeting of currents or by waves moving against the current", "places": { "results": [ { "id": "4jZK2RG8ID" }, { "id": "5iWHqkSgl1" }, { "id": "A2n8YlgHxX" } ] }, "shortDescription": "overfalls", "updatedAt": "2020-06-10T02:14:53.360Z" }, { "ACL": null, "createdAt": "2020-06-08T17:53:58.901Z", "featureClass": { "id": "yMKulpQAmm" }, "featureCode": "ADM1H", "id": "qXZaCm7BsV", "longDescription": "a former first-order administrative division", "places": { "results": [] }, "shortDescription": "historical first-order administrative division", "updatedAt": "2020-06-08T17:53:58.901Z" } ] } } }