ErrorCode
Error code to allow urther front end behaviour depending on error
GraphQL Schema
"""Error code to allow urther front end behaviour depending on error"""
enum ErrorCode {
"""
Internal server error - something went wrong server side, likely to be unexpected
"""
INTERNAL_SERVER_ERROR
"""Object not found for a given ID, may have been deleted"""
OBJECT_NOT_FOUND
"""Insufficient funds to achieve mutation"""
INSUFFICIENT_FUNDS
"""Data is invalid in some way"""
INVALID_DATA
"""Appointment is no longer available"""
APPOINTMENT_NOT_AVAILABLE
}
Values
Name | Description |
---|---|
INTERNAL_SERVER_ERROR | Internal server error - something went wrong server side, likely to be unexpected |
OBJECT_NOT_FOUND | Object not found for a given ID, may have been deleted |
INSUFFICIENT_FUNDS | Insufficient funds to achieve mutation |
INVALID_DATA | Data is invalid in some way |
APPOINTMENT_NOT_AVAILABLE | Appointment is no longer available |