Skip to content

CreateSharingsInput

Autogenerated input type of CreateSharings

Fields

deprecated DO NOT USE
id · ID! · required · The shareable document or folder id
shareable_type · ShareableType! · required · The shareable type ("document" or "folder")
org_member_ids · [ID!] · List of ids of org members to share to
patient_ids · [ID!] · List of ids of patients to share to
user_group_ids · [ID!] · List of ids of groups to share to
share_with_all_org_members · Boolean · Whether the document or folder should be shared to all organization members

Used By

Definition

"""
Autogenerated input type of CreateSharings
"""
input CreateSharingsInput {
"""
DO NOT USE
"""
clientMutationId: String @deprecated(reason: "DO NOT USE")
"""
The shareable document or folder id
"""
id: ID!
"""
The shareable type ("document" or "folder")
"""
shareable_type: ShareableType!
"""
List of ids of org members to share to
"""
org_member_ids: [ID!] = []
"""
List of ids of patients to share to
"""
patient_ids: [ID!] = []
"""
List of ids of groups to share to
"""
user_group_ids: [ID!] = []
"""
Whether the document or folder should be shared to all organization members
"""
share_with_all_org_members: Boolean = false
}