如何查询以仅显示上周的帖子

时间:2019-08-12 10:17:50

标签: graphql drupal-8 gatsby

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

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

graphql是否可能?如果是的话,查询的外观如何?

0 个答案:

没有答案