OBJECT

Mutation

link GraphQL Schema definition

  • type Mutation {
  • # Creates an asset in this EWAI instance.
  • #
  • # Arguments
  • # data: The EWAI Asset info to be created.
  • createEwaiAsset(data: EwaiAssetCreateDto!): EwaiAsset!
  • # Updates the specified EWAI asset info.
  • #
  • # Arguments
  • # data: The asset info to be updated.
  • # where: Specification of which asset is being updated.
  • updateEwaiAsset(
  • data: EwaiAssetUpdateDto!,
  • where: EwaiAssetWhereUniqueArgs!
  • ): EwaiAsset!
  • # Deletes the specified EWAI asset, and its associated PTD message data table.
  • #
  • # Arguments
  • # where: Specification of which asset to be deleted.
  • deleteEwaiAsset(where: EwaiAssetWhereUniqueArgs!): Boolean!
  • # Resets (clears) all data in the specified EWAI asset's data table.
  • #
  • # Arguments
  • # where: [Not documented]
  • resetEwaiAssetData(where: EwaiAssetWhereUniqueArgs!): Boolean!
  • }

link Require by

This element is not required by anyone