Skip to content
This repository has been archived by the owner on Apr 24, 2021. It is now read-only.

Latest commit

 

History

History
63 lines (52 loc) · 655 Bytes

QUERIES.md

File metadata and controls

63 lines (52 loc) · 655 Bytes

Create Project

mutation {
  createProject(
    data: {
      user: "username"
      name: "project name"
      isPublic: true
      description: "description"
      projectJson: "project json!!"
    }
  ) {
    _id
  }
}

Update Project

mutation {
  updateProject(
    id: "id"
    data: {
      user: "username"
      name: "pranav"
      isPublic: true
      description: "description"
      projectJson: "{projectjson}"
    }
  ) {
    _id
  }
}

Delete Project

mutation {
  deleteProject(id: "id") {
    _id
  }
}

Get Project by ID

query {
  findProjectByID(
    id:""
  ){
    name
    user
  }
}