Skip to content

Latest commit

 

History

History
21 lines (20 loc) · 289 Bytes

readme.md

File metadata and controls

21 lines (20 loc) · 289 Bytes

To insert a new Category:

mutation createCategory {
  createCategory(input: {
    name: "IT course", 
    description: "Technology course"}) {
    id
    name
    description
  }
}

Example to how to find the categories:

query queryCategories {
  id
  name
  description
}