"""
Input for `createDiagnosesGroup` mutation.
User must have a scope **diagnoses_group:write**
"""
input CreateDiagnosesGroupInput {
"The name of the `DiagnosesGroup`."
name: String!
"The description of the `DiagnosesGroup`."
code: String!
"The code of the `DiagnosesGroup`."
description: String
"Codes wich belong to `DiagnosesGroup`."
diagnosesGroupCodes: [CodingInput]
} |