This GraphQL query fetches All Colors
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
query allColors { colors (skip: 0, limit: 3) { results { ACL blueDecimal blueFraction blueHex createdAt greenDecimal greenFraction greenHex hexCode id name redDecimal redFraction redHex updatedAt } } }
{ "data": { "colors": { "results": [ { "ACL": null, "blueDecimal": 175, "blueFraction": 0.69, "blueHex": "AF", "createdAt": "2019-12-13T23:44:19.824Z", "greenDecimal": 145, "greenFraction": 0.57, "greenHex": "91", "hexCode": "#FF91AF", "id": "k8i7HSjQOr", "name": "Baker-Miller pink", "redDecimal": 255, "redFraction": 1, "redHex": "FF", "updatedAt": "2019-12-13T23:44:19.824Z" }, { "ACL": null, "blueDecimal": 29, "blueFraction": 0.11, "blueHex": "1D", "createdAt": "2019-12-13T23:44:19.824Z", "greenDecimal": 170, "greenFraction": 0.67, "greenHex": "AA", "hexCode": "#FFAA1D", "id": "tQKOLnCLdy", "name": "Bright yellow (Crayola)", "redDecimal": 255, "redFraction": 1, "redHex": "FF", "updatedAt": "2019-12-13T23:44:19.824Z" }, { "ACL": null, "blueDecimal": 0, "blueFraction": 0, "blueHex": "00", "createdAt": "2019-12-13T23:44:19.824Z", "greenDecimal": 191, "greenFraction": 0.75, "greenHex": "BF", "hexCode": "#FFBF00", "id": "pNTkJMF5Bj", "name": "Amber", "redDecimal": 255, "redFraction": 1, "redHex": "FF", "updatedAt": "2019-12-13T23:44:19.824Z" } ] } } }