This GraphQL query fetches All Baas_features
0
1
2
3
4
5
6
7
8
9
10
11
query allBaas_features { baas_features (skip: 0, limit: 3) { results { ACL Description Feature createdAt id updatedAt } } }
{ "data": { "baas_features": { "results": [ { "ACL": null, "Description": null, "Feature": "Spreadsheet Interface", "createdAt": "2020-05-09T19:06:41.054Z", "id": "Y4CmTTswq8", "updatedAt": "2020-05-09T19:06:41.054Z" }, { "ACL": null, "Description": "Changes delivered to your app in real-time", "Feature": "Real-time Database", "createdAt": "2020-05-09T19:07:00.715Z", "id": "KYbXVVXc7n", "updatedAt": "2020-05-11T14:03:01.220Z" }, { "ACL": null, "Description": "", "Feature": "Push-Notifications", "createdAt": "2020-05-09T19:07:10.533Z", "id": "FXGF7h1KLp", "updatedAt": "2020-05-11T14:04:00.654Z" } ] } } }