Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

上传转译数据 #6

Open
QubitPi opened this issue May 26, 2024 · 0 comments
Open

上传转译数据 #6

QubitPi opened this issue May 26, 2024 · 0 comments
Assignees

Comments

@QubitPi
Copy link
Member

QubitPi commented May 26, 2024

目标

书接上回,最后的临门一脚 - 保存转译文本数据

实现

向数据 web 服务发送一条请求,标注病例已经完成转译,并附上转译文本。GraphQL 语句为:

mutation attachTranscription {
  doctor(op: UPSERT, data:{id:"1"}) {
    edges {
      node {
        cases(op: UPSERT, data:{id: "1", transcribed: true, transcribedText: "(转译文本)"}) {
          edges {
            node {
              transcribed
              transcribedText
            }
          }
        }
      }
    }
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
No open projects
Development

No branches or pull requests

3 participants