This GraphQL query fetches All Genders
0
1
2
3
4
5
6
7
8
9
10
11
query allGenders { genders (skip: 0, limit: 3) { results { ACL code createdAt gender id updatedAt } } }
{ "data": { "genders": { "results": [ { "ACL": null, "code": "M", "createdAt": "2019-11-20T13:05:37.284Z", "gender": "Male", "id": "hJhH3GEd3Q", "updatedAt": "2019-11-20T13:05:58.541Z" }, { "ACL": null, "code": "F", "createdAt": "2019-11-20T13:05:39.850Z", "gender": "Female", "id": "QTZOkckURR", "updatedAt": "2019-11-20T13:06:01.416Z" }, { "ACL": null, "code": "T", "createdAt": "2019-11-20T13:05:42.928Z", "gender": "Transexual", "id": "B9OGwv7z7H", "updatedAt": "2019-11-20T13:06:04.707Z" } ] } } }