我正在尝试使用react.js中的graphql的getquery。但是我不知道该怎么做。我已经成功使用列表查询。
state = { patients: [] }
async componentDidMount() {
try {
const apiData = await API.graphql(graphqlOperation(listxxxx))
const patie = apiData.data.listxxxx.items
this.setState({ patie })
console.log(patie)
} catch (err) {
console.log('qqqqqqqqqqqqqqqqq ', err)
}
}
如何使用get查询?谢谢!
答案 0 :(得分:2)
您需要一个ID来检索带有任何get查询的项目。 getPatient(id:“此处输入您的ID”){}`
类似...
with cte as
(select * ,row_number() over(partition by email order by Function) rn
from table
) select * from cte where rn=1
对于React,您将id添加到变量列表参数:
query Get_Patient_By_Id{
getPatient(id:"2dbcb870-e302-4ed5-a419-68751597129c"){
id
name
}
}