code4romania / teacher-workout-backend

Teacher Workout backend (API for mobile apps & for the web client)
Mozilla Public License 2.0
7 stars 34 forks source link

[55] Filter on lessons title #78

Open danielferecatu opened 8 months ago

danielferecatu commented 8 months ago

What does it fix?

Issue https://github.com/code4romania/teacher-workout-backend/issues/55

How has it been tested?

From GraphiQL with seed data:

query Themes {
    lessons(term: "ip") {
        items {
            title
        }
    }
}
{
  "data": {
    "lessons": {
      "items": [
        {
          "title": "Consectetur adipiscing elit"
        },
        {
          "title": "Nemo enim ipsam voluptatem"
        }
      ]
    }
  }
}