OBJECT

InsightMutation

link GraphQL Schema definition

  • type InsightMutation {
  • # Arguments
  • # feedback: User feedback related to an insight
  • # insightId: Insight id for the user feedback
  • addUserFeedback(feedback: InsightFeedbackInput!, insightId: ID!): InsightUserFeedback
  • # Generate LeMans access key
  • #
  • # **NOTE:** This API/functionality is in Beta, this functionality is a candidate
  • # for a stable API but we reserve the right to fix issues including modifying the
  • # schema if required.
  • #
  • # Arguments
  • # input: Input to generate LeMans access key
  • generateAccessKey(input: InsightAccessKeyPropertyInput!): String!
  • # Update an insight
  • #
  • # Arguments
  • # deltas: Insight changes
  • # insightId: Insight id which needs to be updated
  • updateInsight(deltas: InsightDeltaInput!, insightId: ID!): Insight
  • }

link Require by