-
I'm developing a plugin that includes a custom field for Have tried forcing a lookup by the underlying column name, but since that column isn't registered in TypeOrm it complains. I suppose I could do a raw query, but hoping there's a simple solution I've missed. |
Beta Was this translation helpful? Give feedback.
Answered by
kbanman
Jan 2, 2024
Replies: 1 comment
-
Found the solution literally 10 seconds after posting -_- |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
kbanman
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Found the solution literally 10 seconds after posting -_-
For anyone else, it's as simple as
findOneBy({ customFields: { myCustomThing } })