set default value to false

This commit is contained in:
bimgeek
2025-09-25 10:49:40 +03:00
parent 3461c48b11
commit 5ffb3ea1dd
@@ -1,7 +1,7 @@
(url as text, optional ExpandProperties as logical) as table =>
let
// set default value for ExpandProperties
shouldExpandProperties = if ExpandProperties = null then true else ExpandProperties,
shouldExpandProperties = if ExpandProperties = null then false else ExpandProperties,
// import required functions
GetStructuredData = Extension.LoadFunction("GetStructuredData.pqm"),