GroupUpdateArgs
No description
input GroupUpdateArgs {
groupId: ID!
name: String
usersToAdd: [ID!]
usersToDelete: [ID!]
}
Fields
GroupUpdateArgs.groupId ● ID! non-null scalar common
ID of the group being updated.
GroupUpdateArgs.name ● String scalar common
New group name.
GroupUpdateArgs.usersToAdd ● [ID!] list scalar common
The IDs of any users to add to the group.
GroupUpdateArgs.usersToDelete ● [ID!] list scalar common
The IDs of any users to remove from the group.
Member Of
groupUpdate mutation