React Gatsby Graph QL - filter articles for sitemap
Budget: $10 – $20 USD
I have created a Gatsby blog using Flexiblocks. The issue is i want to create a sitemap specifically for Google News which will be different from main sitemap of the blog. For this sitemap i need to filter articles which were published within last two days. I am using this plugin
allArticle(sort: {order: DESC, fields: date}, filter: {date: {WHAT_SHOULD_I_DO_HERE}}) {
edges {
node {
date
excerpt
title
link
slug
}
}
}
allArticle(sort: {order: DESC, fields: date}, filter: {date: {WHAT_SHOULD_I_DO_HERE}}) {
edges {
node {
date
excerpt
title
link
slug
}
}
}