FactGrid:Sample queries: Difference between revisions

From FactGrid
Jump to navigation Jump to search
Line 43: Line 43:


== Tables ==
== Tables ==
* [https://database.factgrid.de/query/#SELECT%20%3FA%20%3FFamiliennameLabel%20%3FALabel%20%3FADescription%20%3FLebensspanne__mindestens__von%20WHERE%20%7B%0A%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%20%20%3FA%20wdt%3AP91%20wd%3AQ10676.%0A%20%20OPTIONAL%20%7B%20%3FA%20wdt%3AP247%20%3FFamilienname.%20%7D%0A%20%20OPTIONAL%20%7B%20%3FA%20wdt%3AP290%20%3FLebensspanne__mindestens__von.%20%7D%0A%7D%0AORDER%20BY%20%3FFamiliennameLabel Mitglied des Concordienordens]
* [https://database.factgrid.de/query/#SELECT%20%3Fmember%20%3FnameLabel%20%3FmemberLabel%20WHERE%20%7B%0A%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%20%20%3Fmember%20wdt%3AP91%20wd%3AQ10677.%0A%20%20OPTIONAL%20%7B%20%3Fmember%20wdt%3AP247%20%3Fname.%20%7D%0A%7D%0AORDER%20BY%20%3FnameLabel Was a member of the Illuminati]
* [https://database.factgrid.de/query/#SELECT%20%3Fmember%20%3FnameLabel%20%3FmemberLabel%20WHERE%20%7B%0A%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%20%20%3Fmember%20wdt%3AP91%20wd%3AQ10677.%0A%20%20OPTIONAL%20%7B%20%3Fmember%20wdt%3AP247%20%3Fname.%20%7D%0A%7D%0AORDER%20BY%20%3FnameLabel was a member of the Illuminati]
* [https://database.factgrid.de/query/#SELECT%20%3FAufsatz%20%3FAufsatzLabel%20%3FAbsendeort%20%3FAbsendeortLabel%20%3FDatum%20%3FFactGrid_Transkript%20WHERE%20%7B%0A%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%20%20%3FAufsatz%20wdt%3AP121%20wd%3AQ10512.%0A%20%20%3FAufsatz%20wdt%3AP97%20wd%3AQ10677.%0A%20%20OPTIONAL%20%7B%20%3FAufsatz%20wdt%3AP95%20%3FAbsendeort.%20%7D%0A%20%20OPTIONAL%20%7B%20%3FAufsatz%20wdt%3AP106%20%3FDatum.%20%7D%0A%20%20OPTIONAL%20%7B%20%3FAufsatz%20wdt%3AP251%20%3FFactGrid_Transkript.%20%7D%0A%7D All guided compositions, where written? when? plus links to FactGrid transcripts].
* [https://database.factgrid.de/query/#SELECT%20%3FAufsatz%20%3FAufsatzLabel%20%3FAbsendeort%20%3FAbsendeortLabel%20%3FDatum%20%3FFactGrid_Transkript%20WHERE%20%7B%0A%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%20%20%3FAufsatz%20wdt%3AP121%20wd%3AQ10512.%0A%20%20%3FAufsatz%20wdt%3AP97%20wd%3AQ10677.%0A%20%20OPTIONAL%20%7B%20%3FAufsatz%20wdt%3AP95%20%3FAbsendeort.%20%7D%0A%20%20OPTIONAL%20%7B%20%3FAufsatz%20wdt%3AP106%20%3FDatum.%20%7D%0A%20%20OPTIONAL%20%7B%20%3FAufsatz%20wdt%3AP251%20%3FFactGrid_Transkript.%20%7D%0A%7D All guided compositions, where written? when? plus links to FactGrid transcripts].



Revision as of 20:56, 16 June 2021

Help:



Looking for people

  • Search all people of the same family name, sort by given names, state everyone with information about life dates and family details. Table
  • Name of people who ever were a residents of place with basic personal information. Table

Looking for documents

  • All documents written by N.N. with corresponding documents. Table
  • All documents sent to N.N. with corresponding documents. Table
  • All documents mentioning N.N. with corresponding documents. Table
  • All documents of a file listed in sequence. Table
  • All documents sent from (place) by date. Table
  • All documents of a specific archive and research interest by date. Table

Maps

Dots

All documents of a specific research interest where from? Map

All persons of a certain profession in a town Map

Lines

Tables

  • no functional query yet, but a first attempt is here, modeled after the "academic tree" graph in Scholia's author aspect

Graphs

Timelines

Bubble Charts

Grammatically intricate searches

Looking for a statement - give it with all the qualifying statements

This search is especially useful if the data model needs to be changed. It searches the database for a particular statement and gives all the instances with the respective qualifying sub-statements:

SELECT * WHERE {
  ?s wdt:P2 wd:Q7.
  ?s p:P266 ?st. # ?s is the the statement node
  ?st ps:P266 ?o. # that simulates the predicate
  ?st ?qualifier ?value. # this is an attribute (a qualifier)
}

Wishful thinking