github.com/pluralsh/plural-cli@v0.9.5/pkg/ui/web/src/graphql/shells.graphql (about)

     1  fragment CloudShell on CloudShell {
     2    id
     3    aesKey
     4    gitUrl
     5    alive
     6    provider
     7    subdomain
     8    cluster
     9    status {
    10      ready
    11      initialized
    12      containersReady
    13      podScheduled
    14    }
    15  }
    16  
    17  fragment DemoProject on DemoProject {
    18    id
    19    projectId
    20    credentials
    21    ready
    22    state
    23  }
    24  
    25  query GetShell {
    26    shell { ...CloudShell }
    27  }
    28  
    29  mutation DeleteShell {
    30    deleteShell { ...CloudShell }
    31  }