AWS-Appsync 如何从 dynamoDB table 查询最新项目?
AWS-Appsync How to query latest items from the dynamoDB table?
我刚刚开始使用 AWS Appsync,并且主要使用 GraphQL 和 SDK 方法完成了大部分教程 (https://aws-amplify.github.io/docs/js/api)。
如何查询我的 dynamoDB table 只有 return 最新的 50 篇文章?
class TestScreen extends Component {
state = { list: [] }
async componentDidMount() {
const fetched = await API.graphql(graphqlOperation(queries.listArticles))
this.setState({
list: fetched.data.listArticles.items,
})
}
renderRow(item) {
return (
<View>
<Text>{item.name}</Text>
</View>
)
}
render() {
return (
<View>
<FlatList
data={this.state.list}
renderItem={({item}) => this.renderRow(item)}
keyExtractor={item => item.id}
/>
</View>
)
}
}
当前查询 return 向我提供了姓名列表,但不是以任何可识别的顺序。
您可以创建一个 secondary index on a timestamp field and use it to query the table. In addition to that, you can also do pagination。
我刚刚开始使用 AWS Appsync,并且主要使用 GraphQL 和 SDK 方法完成了大部分教程 (https://aws-amplify.github.io/docs/js/api)。
如何查询我的 dynamoDB table 只有 return 最新的 50 篇文章?
class TestScreen extends Component {
state = { list: [] }
async componentDidMount() {
const fetched = await API.graphql(graphqlOperation(queries.listArticles))
this.setState({
list: fetched.data.listArticles.items,
})
}
renderRow(item) {
return (
<View>
<Text>{item.name}</Text>
</View>
)
}
render() {
return (
<View>
<FlatList
data={this.state.list}
renderItem={({item}) => this.renderRow(item)}
keyExtractor={item => item.id}
/>
</View>
)
}
}
当前查询 return 向我提供了姓名列表,但不是以任何可识别的顺序。
您可以创建一个 secondary index on a timestamp field and use it to query the table. In addition to that, you can also do pagination。