Text Search

Fuzzy text search can be used to filter the Catalog to find Courses or Learning Paths with a specific name or Learning Tag. This uses a specific search field rather than the usual filters.

query catalogueSearch {
  catalogue(search: "Test") {
    edges {
      node {
        ... on Course {
          name
          id
        }
        ... on LearningPath {
          id
          name
        }
      }
    }
  }
}