Open sooftware opened 2 years ago
I try to apply the Resume page to my blog. I encounter below error message.
Resume
Field "category" is not defined by type "MarkdownRemarkFrontmatterFilterInput".
File: src/experience_components/Skills/index.tsx:31:50
GraphQLError: Field "category" is not defined by type "MarkdownRemarkFrontmatterFilterInput".
query-compiler.js:208 extractOperations [sooftware.io]/[gatsby]/src/query/query-compiler.js:208:20
query-compiler.js:167 processQueries [sooftware.io]/[gatsby]/src/query/query-compiler.js:167:45
query-compiler.js:78 compile [sooftware.io]/[gatsby]/src/query/query-compiler.js:78:19
query-watcher.ts:223 updateStateAndRunQueries [sooftware.io]/[gatsby]/src/query/query-watcher.ts:223:40
extract-queries.ts:18 extractQueries [sooftware.io]/[gatsby]/src/services/extract-queries.ts:18:3
src
src ├── assets │ ├── images │ │ ├── gatsby-icon.png │ │ └── profile.jpg │ └── styles │ ├── globalStyles.ts │ └── variables.ts ├── components │ ├── AuthorList.tsx │ ├── AuthorListItem.tsx │ ├── Footer.tsx │ ├── NewsContent.tsx │ ├── Pagination.tsx │ ├── PostCard.tsx │ ├── PostContent.tsx │ ├── ReadNext.tsx │ ├── ReadNextCard.tsx │ ├── ResumeContent.tsx │ ├── Wrapper.tsx │ ├── header │ │ ├── SiteNav.tsx │ │ └── SiteNavLogo.tsx │ ├── icons │ │ ├── facebook.tsx │ │ └── twitter.tsx │ └── subscribe │ ├── Subscribe.tsx │ ├── SubscribeForm.tsx │ ├── SubscribeLogo.tsx │ └── SubscribeModal.tsx ├── content ├── data │ ├── education │ │ ├── education-1 │ │ │ └── index.md │ │ ├── education-2 │ │ │ └── index.md │ │ └── index.md │ ├── experieces │ │ ├── experience-1 │ │ │ └── index.md │ │ ├── experience-2 │ │ │ └── index.md │ │ ├── experience-3 │ │ │ └── index.md │ │ ├── experience-4 │ │ │ └── index.md │ │ ├── experience-5 │ │ │ └── index.md │ │ └── index.md │ └── skills │ ├── index.md │ ├── skill-1 │ │ └── index.md │ ├── skill-2 │ │ └── index.md │ ├── skill-3 │ │ └── index.md │ ├── skill-4 │ │ └── index.md │ ├── skill-5 │ │ └── index.md │ ├── skill-6 │ │ └── index.md │ ├── skill-7 │ │ └── index.md │ └── skill-8 │ └── index.md ├── experience_components │ ├── Education │ │ └── index.tsx │ ├── Experience │ │ └── index.tsx │ ├── Footer │ │ ├── index.tsx │ │ └── styles.ts │ ├── Header │ │ ├── Logo │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── MainNav │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── index.tsx │ │ └── styles.ts │ ├── Layout │ │ ├── index.tsx │ │ └── styles.ts │ ├── Skills │ │ ├── index.tsx │ │ └── styles.ts │ ├── ui │ │ ├── Banner │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── Button │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── Carousel │ │ │ ├── index.tsx │ │ │ └── slick.css │ │ ├── Container │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── InfoBlock │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── ProgressBar │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── Timeline │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ └── TitleSection │ │ ├── index.tsx │ │ └── styles.ts │ └── utils │ └── FormatHtml │ └── index.tsx ├── favicon.ico ├── favicon_.ico ├── favicon__.ico ├── helpers │ └── definitions.ts ├── index.tsx ├── layouts │ └── index.tsx ├── pages │ ├── 404.tsx │ ├── about.tsx │ ├── experience.tsx │ ├── news.tsx │ └── resume.tsx ├── styles │ ├── colors.ts │ └── shared.ts ├── templates │ ├── author.tsx │ ├── index.tsx │ ├── post.tsx │ └── tags.tsx ├── typings.d.ts └── website-config.ts
I try to apply the
Resume
page to my blog.I encounter below error message.
File: src/experience_components/Skills/index.tsx:31:50
GraphQLError: Field "category" is not defined by type "MarkdownRemarkFrontmatterFilterInput".
query-compiler.js:208 extractOperations [sooftware.io]/[gatsby]/src/query/query-compiler.js:208:20
query-compiler.js:167 processQueries [sooftware.io]/[gatsby]/src/query/query-compiler.js:167:45
query-compiler.js:78 compile [sooftware.io]/[gatsby]/src/query/query-compiler.js:78:19
query-watcher.ts:223 updateStateAndRunQueries [sooftware.io]/[gatsby]/src/query/query-watcher.ts:223:40
extract-queries.ts:18 extractQueries [sooftware.io]/[gatsby]/src/services/extract-queries.ts:18:3
src
Structure