---
title: "Feature: #93591 - Allow group id lookup in conditions with array operator"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-93591"
source: "Changelog/11.2/Feature-93591-AllowGroupIdLookupInConditionsWithArrayOperator.rst"
typo3-version: "11.2"
typo3-major: 11
type: "feature"
issue: 93591
forge: "https://forge.typo3.org/issues/93591"
tags: ["Backend", "Frontend", "TSConfig", "TypoScript", "ext:backend", "ext:frontend"]
rendered: "2026-09-18T10:44:28+00:00"
---

# Feature: #93591 - Allow group id lookup in conditions with array operator {#feature-93591}

See [forge#93591](https://forge.typo3.org/issues/93591)

## Description {#description}

In the backend and frontend the array of user group ids of the current backend user
is now available as `backend.user.userGroupIds`.

In the frontend the array of user group ids of the current frontend user is available
as `frontend.user.userGroupIds`.

## Impact {#impact}

This allows for a native Symfony Expression Syntax in TypoScript conditions, e.g.

```typoscript
[4 in frontend.user.userGroupIds]

[2 in backend.user.userGroupIds]
```

With this syntax you can match backend user groups in the frontend without
a "like" expression on the comma-separated list of user group ids.
