Builds a || <default> query fragment, providing a default value
for entries missing from the prior lookup. An optional type pins
the Julia-style dtype the default is coerced to when the lookup
falls back (Int8..Int64, UInt8..UInt64, Float32, Float64,
Bool, String).
Value
A DafrQuery.
Examples
IfMissing("N/A")
#> <DafrQuery> || "N/A"
IfMissing(0)
#> <DafrQuery> || 0
IfMissing(0, type = "Int64")
#> <DafrQuery> || 0 type Int64
Axis("cell") |> LookupVector("age") |> IfMissing(0, type = "Int64")
#> <DafrQuery> @ cell : age || 0 type Int64