MIKEL-Inc / resume

Resume parsing and searching application.
MIT License
3 stars 0 forks source link

Upload a Resume and Person to Database #15

Open LanceGundersen opened 5 years ago

LanceGundersen commented 5 years ago

Support for uploading a new person and resume to the database at the same time.

chrisBosse commented 5 years ago
mutation {
  createPersonAndResume(newPersonResume: {
    fullName: "test"
    fileName: "test"
    payload: "payload"
    textBlob: "textblob"
  }) {
    id
    payloadText
    person{
      fullName
    }
  }
}
{
  "data": {
    "createPersonAndResume": {
      "id": 14,
      "payloadText": "cGF5bG9hZA==",
      "person": {
        "fullName": "test"
      }
    }
  }
}