We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6e072b commit e175537Copy full SHA for e175537
src/Our.Umbraco.Look.BackOffice/Services/QueryService.cs
@@ -1,5 +1,4 @@
1
using Our.Umbraco.Look.BackOffice.Models.Api;
2
-using System;
3
using System.Collections.Generic;
4
using System.Globalization;
5
using System.Linq;
@@ -66,7 +65,11 @@ internal static string[] GetTagGroups(string searcherName)
66
65
/// <returns></returns>
67
internal static string[] GetTagNames(string searcherName, string tagGroup)
68
{
69
- return new LookQuery(searcherName) { TagQuery = new TagQuery() }
+ return new LookQuery(searcherName)
+ {
70
+ TagQuery = new TagQuery(),
71
+ RawQuery = "Look_TagGroup_" + tagGroup + ":1"
72
+ }
73
.Search()
74
.Matches
75
.SelectMany(x => x.Tags.Where(y => y.Group == tagGroup))
0 commit comments