Query on the properties and attributes of a specific Customer.
Sample Query
// Read customer query
query {
customer (
customerID: "5e74f42df0dd40574d051f46"
) {
id
type
customerName
isInternal
}
}
Sample Response
// Read customer query successful result
{
"data": {
"customer": {
"id": "5e74f42df0dd40574d051f46",
"type": "organization",
"customerName": "Kim's Convenience",
"isInternal": false
}
}
}