SaimirKapaj / gatsby-markdown-typescript-personal-website

Gatsby Personal/Resume Website
https://gatsby-markdown-typescript-personal-website.netlify.app/
MIT License
54 stars 17 forks source link

Can you help me? #6

Open sooftware opened 2 years ago

sooftware commented 2 years ago

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".

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