The Database Hub | Back4App
The Database Hub | Back4App
How it works
  • Log In
  • Sign Up

  1. Back4App
  2. All Colors with Name and RGB
Public

117
120
117
120
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All Colors

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"
        }
      ]
    }
  }
}