如何使用Contentful从Gatsby中的查询中检索已发布的发布日期?

时间:2017-10-04 09:53:31

标签: graphql contentful gatsby

通过此类请求,使用path = Rails.root.join('public', 'uploads', 'document' sub_folder_name)插件从 Contentful 中提取帖子数据 GraphQL ,寻找访问帖子发布日期的方法(帖子.sys.publishedAt)或updatedAt!

gatsby-source-contentful

}

1 个答案:

答案 0 :(得分:1)

source-contentful插件不包含GraphQL架构中的sys属性。它只包含字段和id。作为一种变通方法,您可以添加一个包含日期的字段,它将在graphQL中为您提供。

我希望这个帮助

编辑---------------

我刚刚提交了一份PR,将这些选项添加到gatsbyjs https://github.com/gatsbyjs/gatsby/pull/2398 您现在可以访问updatedAtcreatedAt属性。