Cluster API. I send an appProject mutation, it run...
# prisma-whats-new
t
Cluster API. I send an appProject mutation, it runs ok. Then I send a deploy request. It runs ok, with no errors, but nothing migrates.
Copy code
{ query: 'mutation($project_name: String!, $stage: String!, $types: String!) {\n    deploy(input: {\n        name: $project_name\n        stage: $stage,\n        types: $types\n    }) {\n        errors {\n            type\n            field\n            description\n        }\n    }\n}',
  variables: 
   { project_name: 'test-project',
     stage: 'local',
     types: 'type Place {... } }
(full types in comment https://github.com/graphcool/prisma/issues/1948#issuecomment-368598581, they are taken from example server) What is wrong?