All Downloads are FREE. Search and download functionalities are using the official Maven repository.

queries.deployments.ts Maven / Gradle / Ivy

import { gql } from '@apollo/client'

export const GET_DEPLOYMENTS = gql`
  query GetDeployments {
    deployments {
      id
      name
      deploymentTime
      source
      processDefinitionsCount
      processInstancesCount
    }
  }`

export const REMOVE_DEPLOYMENT = gql`
  mutation RemoveDeployment($id: ID!) {
    removeDeployment(id:$id, cascade:true)
  }
`





© 2015 - 2024 Weber Informatics LLC | Privacy Policy