Query I have now
{
_or: [
{
id: {
_id: [
"@deep-foundation/core",
"dockerSupportsJs"
]
}
},
{
id: {
_id: [
"@deep-foundation/core",
"Any"
]
}
},
]
}
Question
Is it possible to make this query smaller by combining _id and _in?
Example How I see It
{
id: {
_id: {
_in: [
[
"@deep-foundation/core",
"dockerSupportsJs"
],
[
"@deep-foundation/core",
"Any"
]
]
}
}
}
Query I have now
Question
Is it possible to make this query smaller by combining
_idand_in?Example How I see It