Submissions for GESIS KG

Description

The GESIS Knowledge Graph (GESIS KG) is an integrated research knowledge graph that captures and interlinks metadata of scientific resources—such as datasets, publications, variables, and survey instruments—along with entities like authors and social science concepts, from GESIS Search.

18 of 18 submissions
#25

Natural Language Question

List all resources from a particular type

Source

SPARQL Query

    SELECT ?id ?title
    WHERE {?id a <https://schema.org/ScholarlyArticle>.
        ?id <https://schema.org/name> ?title.
    } 
    LIMIT 10000
#26

Natural Language Question

List all information available for a particular resource

Source

SPARQL Query

    SELECT *
    WHERE {<https://data.gesis.org/gesiskg/resource/ZA5282> ?p ?o}
#27

Natural Language Question

List all datasets and the publications that cite them for the topic "Migration".

Source

SPARQL Query

    SELECT ?publication ?publication_title ?dataset ?dataset_title
    WHERE {?publication <https://schema.org/about> ?topic.  
        ?topic <https://schema.org/name> "Migration"@en.
        ?publication a <https://schema.org/ScholarlyArticle>.  
        ?publication <https://schema.org/citation> ?dataset.
        ?dataset a <https://schema.org/Dataset>.
        ?publication <https://schema.org/name> ?publication_title.
        ?dataset <https://schema.org/name> ?dataset_title.
    }Limit 100
#28

Natural Language Question

What is the number of publications per year that cite datasets focusing on the topic Migration?

SPARQL Query

    SELECT ?year (COUNT(?publication) AS ?count)
    WHERE {?publication a <https://schema.org/ScholarlyArticle>.
        ?publication <https://schema.org/citation> ?dataset.
        ?dataset a <https://schema.org/Dataset>. 
        ?dataset <https://schema.org/about> ?topic.  
        ?topic <https://schema.org/name> "Migration"@en.
        ?publication <https://schema.org/datePublished> ?year .
    } 
    GROUP BY ?year
    ORDER BY ?year
#56

Natural Language Question

List publications which are citing a dataset which is using a survey instrument.

SPARQL Query

SELECT ?publication ?dataset ?instrument
WHERE {?instrument ?i <http://rdf-vocabulary.ddialliance.org/lifecycle#Instrument>.
       ?instrument <https://data.gesis.org/gesiskg/schema/reference> ?s.
       ?s <https://data.gesis.org/gesiskg/schema/referenceMetadata> ?t.
       ?t <https://schema.org/mainEntity> ?dataset.
       ?instrument <https://data.gesis.org/gesiskg/schema/reference> ?d.
       ?d <https://data.gesis.org/gesiskg/schema/referenceMetadata> ?e.
       ?e <https://schema.org/mainEntity> ?publication.
       ?publication ?p <https://schema.org/ScholarlyArticle>.  
       ?publication <https://data.gesis.org/gesiskg/schema/reference> ?r.  
       ?r ?p1 <https://data.gesis.org/gesiskg/schema/DatasetReference>. 
       ?r <https://data.gesis.org/gesiskg/schema/referenceMetadata> ?m. 
       ?m ?p2 <https://data.gesis.org/gesiskg/schema/LinkMetadata>. 
       ?m <https://schema.org/mainEntity> ?dataset.
       ?dataset ?p3 <https://schema.org/Dataset>.
}
#57

Natural Language Question

Year wise count of datasets focusing on the topic Germany including dataset names and DOIs
#58

Natural Language Question

List all publications with their links to survey variables and datasets
#59

Natural Language Question

List all publications which cite a dataset from the years 2010 to 2020 including publication and dataset titles and DOIs
#60

Natural Language Question

Are there any datasets dealing with health or wellbeing related topics?
#61

Natural Language Question

What are the most recent publications citing datasets dealing with topics of political attitude or election behaviour?
#62

Natural Language Question

Which authors are publishing the most in the topic of migration?
#66

Natural Language Question

What are all the universities in Italy?
#69

Natural Language Question

What are the entities in this KG?
#71

Natural Language Question

What are the publications related to literary newspapers in France?
#75

Natural Language Question

How many social psychology research papers use interview methods?
#77

Natural Language Question

List all publications about gender studies
#79

Natural Language Question

what are the institutions in Europe investigating on political corruption?
#82

Natural Language Question

What are the datasets linked to feminism studies?
Odoma and Graphia logos

Quagga has been developed by Odoma ↗ for Graphia ↗

Funded by the European Union (grant ID: 1O1188018 ↗)

Contact Github FAQ