For the complete documentation index, see llms.txt. This page is also available as Markdown.

WhatDataObjectRemoveInput

Input object to identify a WHAT data object to remove from an access control. When both permissions and globalPermissions are omitted, the entire WHAT link is removed. When specific permissions are provided, only those permissions are subtracted.

input WhatDataObjectRemoveInput {
  dataObject: ID!
  globalPermissions: [String!]
  permissions: [String!]
}

Fields

dataObject ● ID! non-null scalar

The ID of the data object to remove or remove permissions from.

globalPermissions ● [String!] list scalar

Specific global permissions to remove. When omitted (together with permissions), removes the entire WHAT link.

permissions ● [String!] list scalar

Specific permissions to remove. When omitted (together with globalPermissions), removes the entire WHAT link.

Member Of

AccessControlInput input

Last updated

Was this helpful?