Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SPARQL 0.50 KB | None | 0 0
  1.  PREFIX ns1: <http://xmlns.com/foaf/spec/>
  2.         PREFIX lb: <http://www.dobble.com/pred/>
  3.         SELECT ?movie ?title ?category ?yearOfProduction
  4.         WHERE {
  5.             ?movie ns1:title '""" + str(title) + """' .
  6.             ?movie ns1:title ?title .
  7.             ?movie ns1:category ?category .
  8.             ?movie ns1:yearOfProduction ?yearOfProduction .
  9.             ?movie ns1:image ?image .
  10.             ?movie ns1:description ?description .
  11.             ?movie ns1:trailer ?trailer .
  12.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement