DebugQueries: Difference between revisions

(added: Categories with Resources)
Line 18: Line 18:
   service wikibase:label { bd:serviceParam wikibase:language "en" }
   service wikibase:label { bd:serviceParam wikibase:language "en" }
}
}
}}
== All Items ==
'''Returns a list of all items and how they are categorized in alphabetical order.''' In this case categories are all items that are used to structure the graph, such as [[Item:Q233|Article]] or [[Item:Q1|Markers]]. This list can help spot duplicates or similiar items.
{{SPARQL2|query=
#defaultView:Table
PREFIX wdt: <https://graphit.ur.de/prop/direct/>
PREFIX wd: <https://graphit.ur.de/entity/>
select distinct ?item ?itemLabel ?categoryLabel { # ?property ?propertyLabel
  ?item ?predicate ?dependency.
  ?property wikibase:directClaim ?predicate
  optional { ?item wdt:P2 ?category}.
  optional { ?item wdt:P3 ?category}.
  service wikibase:label { bd:serviceParam wikibase:language "en" }
}
order by asc(UCASE(str(?itemLabel)))
}}
}}



Revision as of 08:15, 6 September 2023

This page contains several SPARQL-Queries to help debug the graph.

Useful Queries

A List of accessible queries, that are useful to understand the structure of the graph and identify problems, such as missing links. They can be changed as needed.

Backlinks

A query that finds all backlinks to a specific item.

Items used: Polygons (Q108)


#defaultView:Graph
PREFIX wdt: <https://graphit.ur.de/prop/direct/>
PREFIX wd: <https://graphit.ur.de/entity/>
select distinct ?subject ?subjectLabel ?item ?itemLabel { # ?property ?propertyLabel
  values (?item) {(wd:Q108)}
  ?subject ?predicate ?item .
  ?property wikibase:directClaim ?predicate
  service wikibase:label { bd:serviceParam wikibase:language "en" }
}

Try it!


All Items

Returns a list of all items and how they are categorized in alphabetical order. In this case categories are all items that are used to structure the graph, such as Article or Markers. This list can help spot duplicates or similiar items.


Properties used: subclass of (P2), instance of (P3)

#defaultView:Table
PREFIX wdt: <https://graphit.ur.de/prop/direct/>
PREFIX wd: <https://graphit.ur.de/entity/>
select distinct ?item ?itemLabel ?categoryLabel { # ?property ?propertyLabel
  ?item ?predicate ?dependency.
  ?property wikibase:directClaim ?predicate
  optional { ?item wdt:P2 ?category}. 
  optional { ?item wdt:P3 ?category}.
  service wikibase:label { bd:serviceParam wikibase:language "en" }
}
order by asc(UCASE(str(?itemLabel)))

Try it!



Missing Properties

Resources

No Resources

Returns all Items, that don't have any resource that they link to.

Unlinked Resources

Returns all resources, that have not been linked to any item yet.

Instance-less Resources

Returns all Resources that have no Property instance of.

No Subclass

Returns all Items, that don't have a property subclass.

No Dependencies

Returns all Items, that don't link any other items as dependency.

These items don't have a property depends on. This could mean, that they are the begining of a path.

No Links

Returns all Graph-items, that don't link to any other items and are not linked to in return. Does not return items used to structure the graph, such as Essential

No Description

Returns all items without a description.

No Instance

Returns all items that have and their Property instance of. Shows which items are not, e.g. Applications.


Access to Items

Queries that find items with specific proterties for an easier overview.

Quizzes

Returns all Items that are Quizzes.

Resources

Returns all Resources.

Labels

Returns the items with the longest Labels (50). Doesn't return Resources.

Here it could be useful to find shorter alias for the items, for easier viewing in a visualisation.

Orphans

Returns all items that have no Properties. Excludes all Property-Items, such as depends on

Sessions

Returns all Sessions, all Items that they include and the Course that includes them. Excludes all items that are resources.

Categories

Returns all Categories and their sub-items.


Miscellaneous

Circle Dependency

Returns items that link back towards each other, creating a circle dependency.

Categories with Resources

Returns all Categories that link to resources. This could be a sign to create new items or find better item to properly link these resources to.