"""
Input for `createForbiddenGroupItems` mutation.
User must have a scope **forbidden_group:write**
"""
input CreateForbiddenGroupItemsInput{
"Forbidden group identifier."
forbiddenGroupId: ID!
"List of service identifiers."
serviceIds: [ID!]
"List of service group identifiers."
serviceGroupIds: [ID!]
"List of dictionary codes."
codes:[CreateForbiddenGroupCodeInput!]
}
"""
Input for `codes` in `createForbiddenGroupItems` mutation.
"""
input CreateForbiddenGroupCodeInput {
"The name of the dictionary. Allowed names: eHealth/ICD10AM/condition_codes, eHealth/ICPC2/actions, eHealth/ICPC2/condition_codes, eHealth/ICPC2/reasons."
system: String!
"The value from dictionary. It should be present in the dictionary specified in `system` property"
code: String!
}
"""
Return type for `createForbiddenGroupItems` mutation.
"""
type CreateForbiddenGroupItemsPayload {
"Updaed `ForbiddenGroup`."
forbiddenGroup: ForbiddenGroup
} |