deep-foundation / deep-foundation/deeplinks
Combine `_id` and `_in`
Open
enhancement
- Dominant language
- TypeScript
- Stars
- 13
- Forks
- 8
- PR merge metrics
- No merged PRs in 30d
Description
# What I use
```ts
{
_or: [
{
id: {
_id: [
"@deep-foundation/core",
"dockerSupportsJs"
]
}
},
{
id: {
_id: [
"@deep-foundation/core",
"Any"
]
}
},
]
}
```
# What I want
```ts
{
id: {
_id: {
_in: [
[
"@deep-foundation/core",
"dockerSupportsJs"
],
[
"@deep-foundation/core",
"Any"
]
]
}
}
}
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.