We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a76acd7 commit 5e723f8Copy full SHA for 5e723f8
1 file changed
examples/official-site/functions.sql
@@ -3,7 +3,9 @@ select 'http_header' as component,
3
iif($function is not null, sqlpage.link('functions', json_object('function', $function)), 'functions.sql')
4
) as "Link";
5
6
-select 'dynamic' as component, properties
+select 'dynamic' as component, json_patch(json_extract(properties, '$[0]'), json_object(
7
+ 'title', coalesce($function || ' - ', '') || 'SQLPage Functions Documentation'
8
+)) as properties
9
FROM example WHERE component = 'shell' LIMIT 1;
10
11
select 'breadcrumb' as component;
0 commit comments