Tutorial 10: Difference between revisions

From DAAP
Jump to navigation Jump to search
No edit summary
Line 5: Line 5:
Start by accessing the search query interface to the DAAP [https://query.daap.bannerrepeater.org/ here].  
Start by accessing the search query interface to the DAAP [https://query.daap.bannerrepeater.org/ here].  


This interface is based on the public query interface provided by Wikidata. Our instance is called DockerWikibaseQueryService, because it is an access point to the DAAP’s private Wikibase instead of the public Wikidata database. This tutorial will guide you through using the “Query Helper” interface (highlighted in the image below), which is a graphic user interface. ''If you don’t see the “Query Helper” interface immediately, click the “info” icon in the top left corner below the wiki logo image.''
This interface is based on the public query interface provided by Wikidata. Our instance is called DockerWikibaseQueryService, because it is an access point to the DAAP’s private Wikibase instead of the public Wikidata database. This tutorial will guide you through using the “Query Helper” interface (highlighted in the image below), which is a graphical user interface. ''If you don’t see the “Query Helper” interface immediately, click the “info” icon in the top left corner below the wiki logo image.''


https://daap.bannerrepeater.org/w/images/0/0e/SPARQL_tut_img2.png
https://daap.bannerrepeater.org/w/images/0/0e/SPARQL_tut_img2.png


There are further tutorials suggested in the end of this page, which you can follow for instructions on more advanced use including writing your own SPARQL queries from scratch.
There are further tutorials suggested in the end of this page, which you can follow for instructions on more advanced use including writing your own SPARQL queries from scratch.
===Step 2===
===Step 2===
Next step is to select what to query for. To be able to work with the query service efficiently, you need to be moderately well acquainted with the way data is structured in the DAAP. To do this you can always refer to the main data model spreadsheet here, or just look at some example items in the database. For this tutorial we will use the case study of artworks by artist Carolee Schneemann already added to the DAAP. You can read more about the case study here.  
Next step is to select what to query for. To be able to work with the query service efficiently, you need to be moderately well acquainted with the way data is structured in the DAAP. To do this you can always refer to the main data model spreadsheet here, or just look at some example items in the database. For this tutorial we will use the case study of artworks by artist Carolee Schneemann already added to the DAAP. You can read more about the case study here.  

Revision as of 22:44, 1 August 2021

Tutorial 10

Using the query service for advanced search

Step 1

Start by accessing the search query interface to the DAAP here.

This interface is based on the public query interface provided by Wikidata. Our instance is called DockerWikibaseQueryService, because it is an access point to the DAAP’s private Wikibase instead of the public Wikidata database. This tutorial will guide you through using the “Query Helper” interface (highlighted in the image below), which is a graphical user interface. If you don’t see the “Query Helper” interface immediately, click the “info” icon in the top left corner below the wiki logo image.

SPARQL_tut_img2.png

There are further tutorials suggested in the end of this page, which you can follow for instructions on more advanced use including writing your own SPARQL queries from scratch.

Step 2

Next step is to select what to query for. To be able to work with the query service efficiently, you need to be moderately well acquainted with the way data is structured in the DAAP. To do this you can always refer to the main data model spreadsheet here, or just look at some example items in the database. For this tutorial we will use the case study of artworks by artist Carolee Schneemann already added to the DAAP. You can read more about the case study here.

Let’s examine an artwork record for one of these works, e.g. Earth Ship.

SPARQL_tut_img3.png

We can see that the artwork is linked to the artist via the property “creators/ contributors”. So we’ll start our search in the query service by looking for all works which are linked to artist Carolee Schneeman via property “creators/ contributors”.

Step 3

The Query Helper interface works like a filter. If you click on the Filter button and start typing the artist name, in this case – Carolee Schneeman, it should pop up as an auto-suggestion while you’re typing.

SPARQL_tut_img4.png

The query helper will even suggest an appropriate property to use with this item. In this case, the property “creators/ contributors” is exactly the one we want to use, so we can leave it as is.

Sometimes the autosuggestion may be wrong, in which case you need to start typing into the property field and choose the correct property.

SPARQL_tut_img5.png

Step 4

Once you have created at least one filter, you can “run” your query to see the results. Some results may appear even while you’re typing in the filter values, but you won’t get complete results until you’ve hit the big blue “play” button on the left side of the Helper interface.

SPARQL_tut_img6.png

Once you click the button, you will get the complete set of results in the space below the Helper interface. At this point in time, there appear to be 6 artworks associated with this artist in the DAAP.

Step 5

Next you may want to “show” some additional attributes for these artworks. You can do that by using the “show” button in the helper interface. For this particular query let’s use publication locations and other contributors. You will note that the way the “show” button operates is not to filter down, but rather to add optional attributes to the artworks. This means the total number of artworks in the query remains 6, but for some of these you start to see additional data where applicable.

To see the additional attributes, you need to choose the correct properties from the “Show” option. You can consult an example artwork page or the general data model sheet once again to get the property titles if you need to. In this case, the properties are: “place of publication” and “creators/ contributors”.

SPARQL_tut_img7.png SPARQL_tut_img8.png

Step 6

Once again you need to press the “run” button to see your updated query results.

SPARQL_tut_img9.png

You may also notice that the query returns 12 results now. This is because works which have more than one additional contributor (besides the artist Carolee Schneemann) appear as separate results in the table view.

This is not a problem from a data management perspective, but if you don’t find the table view very useful, you can experiment with alternative ways of visualising the data results. For example in this case, you can also try the “graph view” accessible via a drop-down menu.

SPARQL_tut_img10.png

Once you select the alternate view, the results are automatically reloaded in the correct view. Different views suit different cases and different types of “query questions”. The more you use the query tools and experiment, the more you’ll discover what types of data are best displayed via specific visualisations.

SPARQL_tut_img11.png

Step 7

Finally if you want to share this query with someone else, or save it for your own research, there are two options of getting links to the results. The link button in the Query helper interface creates a link to the editable query interface.

SPARQL_tut_img12.png

Whereas the link in the results part of the screen, will give you a link that opens to a full-screen visualisation of the query results and can be embedded elsewhere on the web, too. This is how we produced the link to the visualisation accessible from the case study page for Schneeman’s works.

SPARQL_tut_img13.png

Step 8

You can also download your results in a number of different formats to suit your needs. A CSV file is a convenient way to get data in a standard spreadsheet format.

SPARQL_tut_img14.png

Further reading

There are many more sophisticated ways of using the Query interface, particularly if you know how to edit the SPARQL code manually.

See some of these more advanced tutorial materials prepared by Wikidata: