Is there a way to define "nullable" types for magic SQL?
For example
Not a really important question at this point - just thought I'd ask! :)
sql<number | null>...? It seems that you can't pass a union like that, but you can pass a type that you define astype NumOrNull = number | null, but when looking at the type hints of my return value it still shows just number.Not a really important question at this point - just thought I'd ask! :)