UpdateDashboardSharingInput
No description
input UpdateDashboardSharingInput {
id: ID!
name: String
description: String
customerId: ID
expiry: DateTime
active: Boolean
allowedDomains: [String!]
}
Fields
UpdateDashboardSharingInput.id ● ID! non-null scalar
The id for the dashboard sharing to be updated.
UpdateDashboardSharingInput.name ● String scalar
Optional: A new name for the sharing. If the field is omitted in the GraphQL query the field won't be changed. But setting it to null will set the field value to null (if possible).
UpdateDashboardSharingInput.description ● String scalar
Optional: A new description for the sharing. If the field is omitted in the GraphQL query the field won't be changed. But setting it to null will set the field value to null (if possible).
UpdateDashboardSharingInput.customerId ● ID scalar
Optional: A new customer for the sharing. If this field is omitted or set to null in the GraphQL query the field won't be changed.
UpdateDashboardSharingInput.expiry ● DateTime scalar
Optional: A new expiry data for this sharing. If the field is omitted in the GraphQL query the field won't be changed. But setting it to null will set the field value to null (if possible).
UpdateDashboardSharingInput.active ● Boolean scalar
Optional: Change the active state of this sharing. If this field is omitted or set to null in the GraphQL query the field won't be changed.
UpdateDashboardSharingInput.allowedDomains ● [String!] list scalar
The list of allowed domains. Can contain wildcard '*'. To allow all domains use the '*' wildcard. The list will be set as whole replacing the previously valid list. If this field is omitted or set to null in the GraphQL query the field won't be changed. WARNING: Setting it to the empty list will forbid all domains to access the dashboard sharing.
Member Of
updateDashboardSharing mutation