{"version":3,"sources":["webpack://pydyniak-com-blog/./src/templates/CategoryListTemplate.js"],"names":["CategoryListTemplate","data"],"mappings":"wMAIe,SAASA,EAAT,GAAyC,IAATC,EAAQ,EAARA,KAC3C,OACE,QAAC,IAAD,CAAaA,KAAMA","file":"component---src-templates-category-list-template-js-4e9814841d0fdcdd5cc3.js","sourcesContent":["import React from \"react\"\nimport { graphql } from \"gatsby\"\nimport ArticleList from \"../components/ArticleList\"\n\nexport default function CategoryListTemplate({ data }) {\n return (\n \n )\n }\n\nexport const query = graphql`\nquery($category: [String]) {\n allMarkdownRemark(\n sort: {fields: [frontmatter___date], order: DESC}\n filter: {frontmatter: {type: {eq: \"Post\"}, categories: {in: $category}}}\n ) {\n totalCount\n edges {\n node {\n id\n frontmatter {\n title\n date\n coverImage {\n childImageSharp {\n fixed(width: 200) {\n ...GatsbyImageSharpFixed\n }\n }\n }\n categories\n excerpt\n }\n fields {\n slug\n }\n excerpt(pruneLength: 500)\n }\n }\n }\n }\n \n`"],"sourceRoot":""}