We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
E.g., now => @org.wikidata.city(), country == "Q30"^^org.wikidata:country || inception == makeDate(1894, 1, 1) => notify; is converted to
now => @org.wikidata.city(), country == "Q30"^^org.wikidata:country || inception == makeDate(1894, 1, 1) => notify;
SELECT DISTINCT (?table0 as ?id) (?table0Label as ?idLabel) WHERE { {?table0 wdt:P571 ?p0 FILTER (?p0 = "1894-01-01"^^xsd:dateTime)} UNION {?table0 wdt:P17 ?p3} . FILTER (?p3 = wd:Q30). ?table0 p:P31/ps:P31/wdt:P279* wd:Q515. SERVICE wikibase:label { bd:serviceParam wikibase:language "en". ?table0 rdfs:label ?table0Label. } } limit 5 offset 0
while it should be
SELECT DISTINCT (?table0 as ?id) (?table0Label as ?idLabel) WHERE { {?table0 wdt:P571 ?p0 FILTER (?p0 = "1894-01-01"^^xsd:dateTime)} UNION {?table0 wdt:P17 ?p3 FILTER (?p3 = wd:Q30) } . ?table0 p:P31/ps:P31/wdt:P279* wd:Q515. SERVICE wikibase:label { bd:serviceParam wikibase:language "en". ?table0 rdfs:label ?table0Label. } } limit 5 offset 0
The text was updated successfully, but these errors were encountered:
or
No branches or pull requests
E.g.,
now => @org.wikidata.city(), country == "Q30"^^org.wikidata:country || inception == makeDate(1894, 1, 1) => notify;
is converted towhile it should be
The text was updated successfully, but these errors were encountered: