Skip to content

Commit

Permalink
Added a query to get counts by provided_by
Browse files Browse the repository at this point in the history
  • Loading branch information
justaddcoffee committed Jul 24, 2020
1 parent 52f80d8 commit 678a48d
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions queries/sparql/query-06-provided_by_counts.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
title:
"Get counts by provided_by property"
description:
"Get counts by provided_by property"
endpoint:
"http://kg-hub-rdf.berkeleybop.io/blazegraph/sparql"
query: >
prefix bl: <https://w3id.org/biolink/vocab/>
SELECT (COUNT(?v2) AS ?v1) ?v0
WHERE {
?v2 bl:provided_by ?v0
} GROUP BY ?v0
ORDER BY DESC(?v1)

0 comments on commit 678a48d

Please sign in to comment.