Difference between revisions of "SMW queries"

(Tag: 2017 source edit)
(Tag: 2017 source edit)
 

Here you can see some examples for simple queries using the metadata of a wiki page. You can add these queries to any wiki page.

Creating page lists[edit | edit source]

                    {{#ask:
[[:+]]
[[Modification date::+]]<!-- necessary to filter deleted pages -->
|format=ul
|limit=4
}}

                

... further results

Notes:

[[:+]] show Pages in the Main namespace. [[Myspace:+]] shows pages in the namespace Myspace.

[[:+||Help:+]]shows pages in the Main namespace and in the namespace Help.

Output in category style[edit | edit source]

{{#ask:
[[:+]][[Modification date::+]]
|format=category
|limit=12
}}

Show pages from a category[edit | edit source]

                    {{#ask: 
[[Category:Administration]] 
| limit=4 
| searchlabel=
| format=ol 
}}

                
  1. Authentication with LDAP
  2. BlueSpice Layout/Footer
  3. Config manager
  4. Customize the main navigation

Seiten mit gleichem Namensanfang[edit | edit source]

                    {{#ask: 
[[~Visu*]][[:+||Manual:+]]
[[Modification date::+]]<!-- necessary to filter deleted pages -->
| limit=5 
| searchlabel=
| format=ol 
}}

                
List of pages in the Main namespace and in the namespace Manual that begin with "Visu".
  1. Visual version comparison (VisualDiff)
  2. VisualEditor
  3. VisualEditor/Tables/Examples
  4. VisualEditor/Version comparison
  5. VisualEditor: Insert Images

Results format: Table[edit | edit source]

Format "broadtable"[edit | edit source]

                    {{#ask: 
[[~Visu*]][[:+||Manual:+]]
[[Modification date::+]]<!-- necessary to filter deleted pages -->
| limit=5 
| searchlabel=
| format=broadtable
}}

                
 
Visual version comparison (VisualDiff)
VisualEditor
VisualEditor/Tables/Examples
VisualEditor/Version comparison
VisualEditor: Insert Images


Format "datatable"[edit | edit source]

                    {{#ask: 
[[~Visu*]][[:+||Handbuch:+]]
[[Modification date::+]]<!-- necessary to filter deleted pages -->
| limit=5 
| searchlabel=
| format=table
| class=datatable
}}

                

Important!

The format declaration
|format=datatable 
currently does not work with the BlueSpice skin. Instead, use the following syntax:
|format=table
|class=datatable


Related info



Attachments

Discussions