OBJECT

ReportWizardMutation

Report Wizard

link GraphQL Schema definition

  • type ReportWizardMutation {
  • # Requires access to resource REPORT_WIZARD_EDIT
  • #
  • # Arguments
  • # name: [Not documented]
  • # query: [Not documented]
  • # category: [Not documented]
  • # isPrivate: [Not documented]
  • # customFields: [Not documented]
  • # templateNid: [Not documented]
  • # templateExcelNid: [Not documented]
  • # roleNidList: [Not documented]
  • create(
  • name: String!,
  • query: ReportWizardGraphqlQueryString!,
  • category: String!,
  • isPrivate: Boolean,
  • customFields: Map,
  • templateNid: TemplateNid,
  • templateExcelNid: TemplateNid,
  • roleNidList: [RoleNid!]
  • ): ReportWizardType!
  • # Requires access to resource REPORT_WIZARD_EDIT
  • #
  • # Arguments
  • # reportWizardNid: [Not documented]
  • # name: [Not documented]
  • # query: [Not documented]
  • # category: [Not documented]
  • # isPrivate: [Not documented]
  • # customFields: [Not documented]
  • # roleNidList: [Not documented]
  • update(
  • reportWizardNid: ReportWizardNid!,
  • name: String,
  • query: ReportWizardGraphqlQueryString,
  • category: String,
  • isPrivate: Boolean,
  • customFields: Map,
  • roleNidList: [RoleNid!]
  • ): ReportWizardType!
  • # Requires access to resource REPORT_WIZARD_EDIT
  • #
  • # Arguments
  • # reportWizardNid: [Not documented]
  • delete(reportWizardNid: ReportWizardNid!): Boolean
  • # Requires access to resource REPORT_WIZARD_EDIT
  • schedule: ReportWizardScheduleMutation!
  • # Requires access to resource REPORT_WIZARD_SEE
  • requestedReports: ReportWizardRequestedReportsMutation!
  • # Requires access to resource REPORT_WIZARD_EDIT
  • #
  • # Arguments
  • # reportWizardNid: [Not documented]
  • # excelTemplate: [Not documented]
  • updateExcelTemplate(
  • reportWizardNid: ReportWizardNid!,
  • excelTemplate: String!
  • ): Boolean
  • # Update html/pdf template.
  • # Requires access to resource REPORT_WIZARD_EDIT
  • #
  • # Arguments
  • # templateNid: [Not documented]
  • # templateData: [Not documented]
  • updateHtmlTemplate(
  • templateNid: TemplateNid!,
  • templateData: TemplateDataInputType!
  • ): NonNullTemplateNewValueOrErrorList!
  • # Requires access to resource REPORT_WIZARD_EDIT
  • #
  • # Arguments
  • # reportWizardNid: [Not documented]
  • # tagList: [Not documented]
  • setReportWizardTagList(
  • reportWizardNid: ReportWizardNid!,
  • tagList: [TagDefinitionInput!]!
  • ): Boolean!
  • # Requires access to resource REPORT_WIZARD_EDIT
  • #
  • # Arguments
  • # tagDefinitionNid: [Not documented]
  • deleteReportWizardTagDefinition(
  • tagDefinitionNid: TagDefinitionNid!
  • ): Boolean!
  • # Requires access to resource REPORT_WIZARD_EDIT.
  • # Requires access to resource GRAPHQL_REPORT_WIZARD_SHARED_LINK_EDIT
  • sharedLink: ReportWizardSharedLinkMutation!
  • # Requires access to resource REPORT_WIZARD_EDIT
  • aiAssistant: ReportWizardAiAssistantMutation!
  • # Requires access to resource REPORT_WIZARD_EDIT
  • #
  • # Arguments
  • # reportWizardNid: [Not documented]
  • # dayRange: [Not documented]
  • setMaxDisplayableDayRange(
  • reportWizardNid: ReportWizardNid!,
  • dayRange: IntPositive
  • ): Boolean
  • }