PermissionGroupCreateInput
No description
input PermissionGroupCreateInput {
addPermissions: [PermissionEnum!]
addUsers: [ID!]
addChannels: [ID!]
name: String!
restrictedAccessToChannels: Boolean
}
Fields
PermissionGroupCreateInput.addPermissions
● [PermissionEnum!]
list enum users
List of permission code names to assign to this group.
PermissionGroupCreateInput.addUsers
● [ID!]
list scalar miscellaneous
List of users to assign to this group.
PermissionGroupCreateInput.addChannels
● [ID!]
list scalar miscellaneous
List of channels to assign to this group.
Added in Saleor 3.14This API is currently in Feature Preview and can be subject to changes at later point.
PermissionGroupCreateInput.name
● String!
non-null scalar miscellaneous
Group name.
PermissionGroupCreateInput.restrictedAccessToChannels
● Boolean
scalar miscellaneous
Determine if the group has restricted access to channels. DEFAULT: False
Added in Saleor 3.14This API is currently in Feature Preview and can be subject to changes at later point.
Member Of
permissionGroupCreate
mutation