terion
02/26/2018, 6:25 PM{ 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?