This GraphQL query fetches All POIS
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
query allPOIS { pOIS (skip: 0, limit: 3) { results { ACL category createdAt description email id image { url name } location { latitude longitude } name phone updatedAt website } } }
{ "data": { "pOIS": { "results": [ { "ACL": null, "category": "Theatres", "createdAt": "2016-08-05T13:39:34.306Z", "description": "lorem ispe dictum quantis lorem ispe dictum quantislorem ispe dictum quantislorem ispe dictum quantislorem ispe dictum quantislorem ispe dictum quantislorem ispe dictum quantislorem ispe dictum quantislorem ispe dictum quantis", "email": "", "id": "wgHOiM7wsv", "image": { "url": "https://parsefiles.back4app.com/prXgxopmH3BfDIJhbh1K55z7zN1tAEzwBrDuYvTv/0778172abf2445027634d5a3627cdbfa_kay-theatre.jpg", "name": "0778172abf2445027634d5a3627cdbfa_kay-theatre.jpg" }, "location": { "latitude": 31.480669291891893, "longitude": 74.40533649189189 }, "name": "Public Theatre", "phone": "123456789", "updatedAt": "2019-12-20T23:04:12.043Z", "website": "http://theatre.com" }, { "ACL": null, "category": "Parks", "createdAt": "2016-08-05T13:43:38.466Z", "description": "lorem ispe dictum quantis bla bla lorem ispe dictum quantislorem ispe dictum quantislorem ispe dictum quantislorem ispe dictum quantis", "email": "", "id": "kK44DUHVOs", "image": { "url": "https://parsefiles.back4app.com/prXgxopmH3BfDIJhbh1K55z7zN1tAEzwBrDuYvTv/5e1f0c33aa7dbfa73491d5d4c047de27_article-0-0D5586CC00000578-859_468x314.jpg", "name": "5e1f0c33aa7dbfa73491d5d4c047de27_article-0-0D5586CC00000578-859_468x314.jpg" }, "location": { "latitude": 40.36119554, "longitude": 17.52799988 }, "name": "Eden Garden Park", "phone": "123456789", "updatedAt": "2019-12-20T23:04:10.814Z", "website": "http://yahoo.com" }, { "ACL": null, "category": "EDIT ME!!", "createdAt": "2018-05-29T01:40:39.283Z", "description": "EDIT ME!!", "email": "EDIT ME!!", "id": "o0hnOUh8sS", "image": { "url": "https://parsefiles.back4app.com/prXgxopmH3BfDIJhbh1K55z7zN1tAEzwBrDuYvTv/4f6a59cc5a335762e7452eaacee4143c_image.jpg", "name": "4f6a59cc5a335762e7452eaacee4143c_image.jpg" }, "location": { "latitude": 0, "longitude": 0 }, "name": "EDIT ME!!", "phone": "EDIT ME!!", "updatedAt": "2018-05-29T01:40:39.283Z", "website": "EDIT ME!!" } ] } } }