diff --git a/scholia/app/templates/author_most-citing-authors.sparql b/scholia/app/templates/author_most-citing-authors.sparql index ce7d51a2b..b1fabe43d 100644 --- a/scholia/app/templates/author_most-citing-authors.sparql +++ b/scholia/app/templates/author_most-citing-authors.sparql @@ -6,7 +6,7 @@ SELECT ?citing_author ?citing_authorLabel # Either show the ORCID iD or construct part of a URL to search on the ORCID homepage - (COALESCE(?orcid_, CONCAT("orcid-search/quick-search/?searchQuery=", ENCODE_FOR_URI(?citing_authorLabel))) AS ?orcid) + (COALESCE(?orcid_, CONCAT("orcid-search/search/?searchQuery=", ENCODE_FOR_URI(?citing_authorLabel))) AS ?orcid) WITH { SELECT (COUNT(?citing_work) AS ?count) ?citing_author WHERE { ?work wdt:P50 target: . diff --git a/scholia/app/templates/dataset_list-of-authors.sparql b/scholia/app/templates/dataset_list-of-authors.sparql index 0a9323e81..9253de1f7 100644 --- a/scholia/app/templates/dataset_list-of-authors.sparql +++ b/scholia/app/templates/dataset_list-of-authors.sparql @@ -24,7 +24,7 @@ WHERE { } OPTIONAL { ?author_ wdt:P496 ?orcid_ . } # Either show the ORCID iD or construct part of a URL to search on the ORCID homepage - BIND(COALESCE(?orcid_, CONCAT("orcid-search/quick-search/?searchQuery=", ENCODE_FOR_URI(?author))) AS ?orcid) + BIND(COALESCE(?orcid_, CONCAT("orcid-search/search/?searchQuery=", ENCODE_FOR_URI(?author))) AS ?orcid) OPTIONAL { ?author_ schema:description ?authorDescription . FILTER (LANG(?authorDescription) = "en") diff --git a/scholia/app/templates/topic_authors.sparql b/scholia/app/templates/topic_authors.sparql index 262731881..ddb92e5e1 100644 --- a/scholia/app/templates/topic_authors.sparql +++ b/scholia/app/templates/topic_authors.sparql @@ -5,7 +5,7 @@ PREFIX target: SELECT ?count ?author ?authorLabel ?authorDescription (CONCAT("/author/", SUBSTR(STR(?author), 32)) AS ?authorUrl) - (COALESCE(?orcid_, CONCAT("orcid-search/quick-search/?searchQuery=", ?authorLabel)) AS ?orcid) + (COALESCE(?orcid_, CONCAT("orcid-search/search/?searchQuery=", ?authorLabel)) AS ?orcid) WITH { SELECT ?author diff --git a/scholia/app/templates/wikiproject_authors.sparql b/scholia/app/templates/wikiproject_authors.sparql index c0a700d82..cd2701632 100644 --- a/scholia/app/templates/wikiproject_authors.sparql +++ b/scholia/app/templates/wikiproject_authors.sparql @@ -5,7 +5,7 @@ PREFIX target: SELECT ?count ?author ?authorLabel ?authorDescription (CONCAT("/author/", SUBSTR(STR(?author), 32)) AS ?authorUrl) - (COALESCE(?orcid_, CONCAT("orcid-search/quick-search/?searchQuery=", ?authorLabel)) AS ?orcid) + (COALESCE(?orcid_, CONCAT("orcid-search/search/?searchQuery=", ?authorLabel)) AS ?orcid) WITH { SELECT ?author diff --git a/scholia/app/templates/work-curation_missing-orcid.sparql b/scholia/app/templates/work-curation_missing-orcid.sparql index 7296da958..ebf56677c 100644 --- a/scholia/app/templates/work-curation_missing-orcid.sparql +++ b/scholia/app/templates/work-curation_missing-orcid.sparql @@ -5,7 +5,7 @@ SELECT DISTINCT (CONCAT("/author/", SUBSTR(STR(?author), 32)) AS ?authorUrl) ("ORCID search ↗" AS ?orcid_search) - (CONCAT("https://orcid.org/orcid-search/quick-search/?searchQuery=", ENCODE_FOR_URI(?authorLabel)) AS ?orcid_searchUrl) + (CONCAT("https://orcid.org/orcid-search/search/?searchQuery=", ENCODE_FOR_URI(?authorLabel)) AS ?orcid_searchUrl) WHERE { target: wdt:P50 ?author .