首页 > 解决方案 > 如何查询仅显示上周的帖子

问题描述

在我与 Gatsby 的 drupal 8 解耦项目中,我想使用 graphql 查询帖子进行过滤。我正在使用 json-api 模块。我只想要在 Gatsby 中查询上周帖子的输出。所以我需要类似的东西:

allNodePosts(filter: {date: {eq: "between today and last seven days"}}) {
  edges {
    node {
      body {
        value
      }
    }
  }

这可以用graphql吗?如果是的话,查询应该是什么样子?

标签: graphqldrupal-8gatsby

解决方案


推荐阅读