Merge branch 'fix-author-post-sort'

This commit is contained in:
Corbin Crutchley
2019-08-08 13:43:40 -07:00

View File

@@ -64,7 +64,8 @@ export const pageQuery = graphql`
...AuthorInfo
}
allMarkdownRemark(
filter: { frontmatter: { author: { id: { eq: $slug } } } }
filter: {frontmatter: {author: {id: {eq: $slug}}}},
sort: {order: DESC, fields: frontmatter___published}
) {
totalCount
edges {