We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
书接上回,最后的临门一脚 - 保存转译文本数据
向数据 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 } } } } } } }
The text was updated successfully, but these errors were encountered:
Doom9527
No branches or pull requests
目标
书接上回,最后的临门一脚 - 保存转译文本数据
实现
向数据 web 服务发送一条请求,标注病例已经完成转译,并附上转译文本。GraphQL 语句为:
The text was updated successfully, but these errors were encountered: