Hey! I just deployed my prisma service `dev` to `p...
# orm-help
c
Hey! I just deployed my prisma service
dev
to
prisma-eu1
. Now I want to delete my service by typing
prisma delete dev
. The following error appears:
Copy code
{
  “data”: {
    “generateClusterToken”: null
  },
  “errors”: [
    {
      “message”: “Workspace dev does not exist”,
      “locations”: [
        {
          “line”: 3,
          “column”: 9
        }
      ],
      “path”: [
        “generateClusterToken”
      ],
      “code”: 222
    }
  ],
  “status”: 200
}
Am I using the wrong command?
n
yes, it is supposed to be
prisma delete
. If that doesn't work, what is your
prisma version
?
c
prisma delete
shows the same behaviour
`prisma version`: prisma/1.7.4 (darwin-x64) node-v10.0.0
n
are you logged in with the CLI? you can check with
prisma account
c
yes, I’m logged in, but I can’t see the service when using
prisma list
n
when you're in the Prisma Console, can you see the service?
c
nope, can’t see it there either.. but I can connect to it using the playground 😄🤔🤔
would the service’s link help for debugging purposes?
n
yes, you can PM it to me 🙂
i
same issue here.