Tasks returning in glql queries
## Summary I see tasks returning in glql queries now, is this new? I didn't think we were able to return work items yet? Is there a way to filter out tasks by chance? I don't see type filter support. :thinking_face: ## Example: ```glql --- display: table fields: title, labels("type**"), milestone, updatedAt, created, type, author, epic --- project = "gitlab-org/gitlab" and label = "group::product planning" and opened=true and author = @amandarueda and label != ("workflow::in dev", "workflow::in review", "type::ignore", "UX Design") and label = "type::feature" and milestone = "17.6" ```
issue