Anyone knows how to solve this issue?: ``` ERROR:...
# prisma-whats-new
p
Anyone knows how to solve this issue?:
Copy code
ERROR: Whoops. Looks like an internal server error. Search your cluster logs for request ID: cluster:cluster:cjdzydutx5iwo0149wvzi8vsc

{
  "data": {
    "deploy": null
  },
  "errors": [
    {
      "message": "Whoops. Looks like an internal server error. Search your cluster logs for request ID: cluster:cluster:cjdzydutx5iwo0149wvzi8vsc",
      "path": [
        "deploy"
      ],
      "locations": [
        {
          "line": 2,
          "column": 9
        }
      ],
      "requestId": "cluster:cluster:cjdzydutx5iwo0149wvzi8vsc"
    }
  ],
  "status": 200
}
I'm able to deploy to the same service from another machine, so that's weird
on prisma 1.2.5 and 1.2.6 (locally)
a
Hi, what changes did you make before the error started appearing? I just had the same issue because I was adding 2 relations from one type to another, and I fixed it by doing as @nilan is suggesting here: https://www.graph.cool/forum/t/migrating-from-graphcool1-0-rc1-to-prisma/2169/3?u=nilan !!! Caution: this removes all of your Docker volumes irrevocably, including all data.
Copy code
# using bash
docker kill $(docker ps -aq); # ignore Error response from daemon: Cannot kill container
docker rm $(docker ps -aq)
docker volume rm $(docker volume ls -q)
y
@nilan I got the same issue from this afternoon
Copy code
ERROR: Whoops. Looks like an internal server error. Please contact us from the Console (<https://console.graph.cool>) or via email (support@graph.cool) and include your Request ID: eu-west-1:system:cje02kmt81frj0160fkjwu1zj

{
  "data": {
    "push": null
  },
  "errors": [
    {
      "message": "Whoops. Looks like an internal server error. Please contact us from the Console (<https://console.graph.cool>) or via email (support@graph.cool) and include your Request ID: eu-west-1:system:cje02kmt81frj0160fkjwu1zj",
      "requestId": "eu-west-1:system:cje02kmt81frj0160fkjwu1zj",
      "path": [
        "push"
      ],
      "locations": [
        {
          "line": 2,
          "column": 9
        }
      ]
    }
  ],
  "status": 200
}
I am trying to push a new resolver from local to the cloud
graphcool deploy --target staging
p
Yeah it turned out that this was related to a bad datamodel and that the error was unrelated to the actual problem. We are unable to reproduce though...