Skip to content

Commit

Permalink
Update 05-intro_to_querying.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaouinaa authored Feb 18, 2024
1 parent 8a1cb38 commit 66d66a8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions episodes/05-intro_to_querying.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ WHERE
?item wdt:P18 ?itemPic. #Show me only cats with pictures. If you want to include very cats in your search, you need to place the Option{} function in front
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
#Helps to get the Label in english, if not, then yours is automatically selected
#Helps to get the label in English. If not, yours will be selected automatically
}
```
Expand Down Expand Up @@ -249,7 +249,7 @@ WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,[AUTO_LANGUAGE]". }
#Helps to get the Label in english, if not, then yours is automatically selected
#Helps to get the label in English. If not, yours will be selected automatically
}
```
![](fig/episode_5_Map_USA.png)

Check warning on line 255 in episodes/05-intro_to_querying.md

View workflow job for this annotation

GitHub Actions / Build markdown source files if valid

[image missing alt-text]: fig/episode_5_Map_USA.png
Expand All @@ -270,7 +270,7 @@ WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,[AUTO_LANGUAGE]". }
#Helps to get the Label in english, if not, then yours is automatically selected
#Helps to get the label in English. If not, yours will be selected automatically
}
Group by ?geo ?geoLabel
Expand Down Expand Up @@ -303,7 +303,7 @@ WHERE
?book wdt:P136 ?genre. #Get the attribute genre form item
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,[AUTO_LANGUAGE]". }
#Helps to get the Label in english, if not, then yours is automatically selected
#Helps to get the label in English. If not, yours will be selected automatically
}
GROUP BY ?genre ?genreLabel
Expand Down Expand Up @@ -341,7 +341,7 @@ WHERE
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,[AUTO_LANGUAGE]" . }
#Helps to get the Label in english, if not, then yours is automatically selected
#Helps to get the label in English. If not, yours will be selected automatically
}
```
![](fig/episode_05_Map.jpg){alt='Map of NFDI Consortia in Germany'}
Expand Down Expand Up @@ -371,7 +371,7 @@ WHERE
#Participants can be researchers, research institutions, universities, companies and many more.
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,[AUTO_LANGUAGE]" . }
#Helps to get the Label in english, if not, then yours is automatically selected
#Helps to get the label in English. If not, yours will be selected automatically
}
GROUP BY ?NFDIKLabel
Expand Down Expand Up @@ -409,7 +409,7 @@ WHERE
OPTIONAL { ?NFDIK wdt:P154 ?NFDIKpicture } #Give me the pictures of the NFDI, if available.
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,[AUTO_LANGUAGE]" . }
#Helps to get the Label in english, if not, then yours is automatically selected
#Helps to get the label in English. If not, yours will be selected automatically
}
Expand Down

0 comments on commit 66d66a8

Please sign in to comment.