OBJECT

EntityGroupMutation

link GraphQL Schema definition

  • type EntityGroupMutation {
  • # Curate an existing, potential entity group or app. This creates another
  • # (curated) entity group/app that may have a different definition from the
  • # original.
  • # Only one curated entity group/app can be created from the same potential
  • # group/app. If a curated group/app already exists for the given potential
  • # group/app,
  • # the EntityGroupDefinition input must have the entityId of the curated group/app
  • # in order for the mutation to override the existing curated group/app
  • # with the new definition. Otherwise, the mutation will fail with an appropriate
  • # error message.
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # input: [Not documented]
  • # potentialEntityGroupId: [Not documented]
  • curateEntityGroup(
  • input: EntityGroupDefinitionInput!,
  • potentialEntityGroupId: EntityId!
  • ): Entity
  • # Delete existing entity groups or apps, either curated or uncurated (potential).
  • #
  • # Only the groups/apps explicitly defined in the input parameter are deleted.
  • #
  • # When deleting potential groups or apps, if there are curated groups or apps
  • # associated to them, the corresponding potential
  • # groups/apps will not be deleted. Only the relationship between the groups/apps
  • # will be deleted.
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # entityId: [Not documented]
  • deleteEntityGroups(entityId: [EntityId!]!): [Boolean!]
  • # Upsert a dynamic entity group. The group members are defined dynamically through
  • # the EntityGroupDynamicDefinitionInput input parameter
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # input: [Not documented]
  • upsertDynamicEntityGroup(
  • input: EntityGroupDynamicDefinitionInput!
  • ): Entity
  • # Upsert a (static) entity group or app. All members are defined explicitly in the
  • # EntityGroupDefinitionInput parameter.
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # input: [Not documented]
  • upsertEntityGroup(input: EntityGroupDefinitionInput!): Entity
  • }

link Require by