MIKEL-Inc / resume

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

GraphQL Resume Mutation #16

Closed LanceGundersen closed 5 years ago

LanceGundersen commented 5 years ago

Need a mutation to handle resumes.

chrisBosse commented 5 years ago
mutation {
  createResume(newResume: {
    personId: 1
    textBlob: "Look out!  Here I come!"
    payload: "Look out!  Here I come!"
  }) {
    id
    person{
      fullName
    }
    payloadText
    payload
    textBlob
    keywords
  }
}
{
  "data": {
    "createResume": {
      "id": 15,
      "person": {
        "fullName": "John Doe"
      },
      "payloadText": "TG9vayBvdXQhICBIZXJlIEkgY29tZSE=",
      "payload": "Look out!  Here I come!",
      "textBlob": "Look out!  Here I come!",
      "keywords": "'come':5 'look':1"
    }
  }
}