Example of queries
this.useEnableQuery = SystemAPI.QueryBuilder()
.WithAllRW<EffectUses>()
.WithAll<Active>()
.WithDisabled<ActivePrevious>()
.Build();
this.useDisableQuery = SystemAPI.QueryBuilder()
.WithAll<EffectUses, ActivePrevious>()
.WithDisabledRW<DestroyEntity>()
.WithDisabled<Active>()
.Build();
Attached picture shows what it shows. I would expect WithDisabled[RW]<T> to also appear in this window as it's a critical part of the query. (Though I think all WithNone optiosn should also show)