SELECT ?property ?value WHERE { BIND (?? AS ?s) ?s ?property ?value . FILTER (isLiteral(?value)) } LIMIT 1000

Attributes

Graphdaten
graph data
dati a grafo
données de graphe
Representation of information where data items are represented as nodes (vertices) in a graph, whereas the edges represent relationships between data items.
Daten, die in Form von Knoten und Kanten komplexe Zusammenhänge übersichtlich darstellen und als zusammenhängende Datensätze gespeichert werden.
Données représentées et stockées sous forme de nœuds, d'arêtes et de propriétés.
Struttura dati relazionale formata da un numero finito di vertici (nodi) e un numero finito di segmenti (archi o spigoli) che collegano ogni nodo agli altri.
2025-10-14T07:36:43.0408860Z
515697
https://www.termdat.bk.admin.ch/entry/515697
HTWK Leipzig, Grundlagen der Graphdatenverarbeitung ([Internet, 2024-12-04](https://www.imn.htwk-leipzig.de/~kudrass/Lehrmaterial/Oberseminar/2019/05-Abstract-GraphProcessing.pdf))
Oxford Semantic Technologies, RDFox Glossary, "Graph Data" ([Internet, 2024-12-04](https://www.oxfordsemantic.tech/glossary/graph-data))
O'Reilly, Modellazione dei dati con i grafici ([Internet, 2025-10-14](https://www.oreilly.com/library/view/database-grafici-2a/9798341645219/ch03.html))
Oracle, Qu’est-ce qu’une base de données orientée graphe ? ([Internet, 2025-10-14](https://www.oracle.com/fr/autonomous-database/what-is-graph-database/))
after Oxford Semantic Technologies, RDFox Glossary, "Graph Data" ([Internet, 2024-12-04](https://www.oxfordsemantic.tech/glossary/graph-data))
d'après Oracle, Qu’est-ce qu’une base de données orientée graphe ? ([Internet, 2025-10-14](https://www.oracle.com/fr/autonomous-database/what-is-graph-database/))
nach Ionos, Was ist eine Graph Database? ([Internet, 2025-10-14](https://www.ionos.de/digitalguide/hosting/hosting-technik/graphdatenbank/))
secondo A. Minini, I grafi ([Internet, 2025-10-14](https://www.andreaminini.com/ricerca-operativa/teoria-dei-grafi/grafo))
SELECT ?property ?object WHERE { BIND (?? AS ?s) ?s ?property ?object . FILTER (isIRI(?object)) FILTER (?property != rdf:type) FILTER (?property != rdfs:subClassOf) } LIMIT 1000
SELECT ?property ?subject WHERE { BIND (?? AS ?o) ?subject ?property ?o . FILTER (?property != rdf:type) FILTER (?property != rdfs:subClassOf) } LIMIT 1000
Incoming Relationships: No results found.
SELECT ?instance ?description WHERE { BIND (?? AS ?class) ?instance (rdf:type|owl:type) ?class . OPTIONAL { ?instance schema:description ?description . } } LIMIT 5000
Instances of this Class: No results found.
SELECT ?superclass ?description WHERE { ?? rdfs:subClassOf ?superclass . OPTIONAL { ?superclass (rdfs:comment|schema:description) ?description . } } LIMIT 5000
Superclasses of this Class: No results found.
SELECT ?subclass ?description WHERE { ?subclass rdfs:subClassOf ?? . OPTIONAL { ?subclass (rdfs:comment|schema:description) ?description . } } LIMIT 5000
Subclasses of this Class: No results found.