This is an old revision of the document!
Camel-Case
camelCase is the name for a writing/naming standard common in a number of programming languages.
When you have a multi-word name, spaces are removed and the first letter of each word is capitalised except for the first word.
So you get results like those below…
| Normal Value | Camelcase |
|---|---|
| Pump | pump |
| Main Pump | mainPump |
| North Compressor Station | northCompressorStation |
| Secondary BES Handler | secondaryBesHandler |
For consistency, the names of all types, properties etc. are in Camel Case when using GraphQL.