如何在React中使用来自AWS的GraphQL Get查询

时间:2019-03-13 13:54:04

标签: javascript reactjs graphql aws-appsync aws-amplify

我正在尝试使用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查询?谢谢!

1 个答案:

答案 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
  }
}

docs:https://aws-amplify.github.io/docs/js/api#simple-query