python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Plan to upgrade version of Dropwizard in GraphDB?
We are maintaining an application using GraphDB as a backend service. This application is built on spring-boot, and we are testing the application with a test-dependency to graphdb-runtime. It seems l...
Erik Godding Boye
Votes: 0
Answers: 1
Concatenate one column over a resultset like kind of group_concat
I am currently writing on a SPARQL query (GraphDB) and try to concatenate the results of one column to avoid the kind of "duplicates".
My current query looks like this
SELECT ?label ?otaupda...
Larry
Votes: 0
Answers: 1
Retrieve Wikidata Item Wiki url with SPARQL
I'm using this approach to retrieve the Wikipedia url for a Wikidata item for multiple languages, using Sparql:
SELECT ?item ?en ?url_en ?es WHERE {
{ ?item wdt:P31 wd:Q6256. }
UNION
{ ?item wdt...
loretoparisi
Votes: 0
Answers: 0
creating dynamic updates in Agensgraph via Cypher
trying to create a function like :-
addChild(parent graphid,child graphid,relationship text,direction text)
merge(parent)-[r:f(relationship)]->(child) return id(r);
with a typical cal :
relid=add...
howlingengines
Votes: 0
Answers: 1