the-deep / server

Server for DEEP
https://app.thedeep.io/
GNU Affero General Public License v3.0
9 stars 3 forks source link

Implement graphql mutation node for changing framework to a project #1456

Closed sudan45 closed 5 months ago

susilnem commented 5 months ago

In order to change the framework to a project, we can use already built ProjectUpdate mutation.

 mutation MyMutation($projectId: ID!, $input: ProjectUpdateInputType!) {
              project(id: $projectId) {
                  projectUpdate(data: $input) {
                    ok
                    errors
                    }
                }
         }

Closing for now.