I want to query a triple store which is multilingual.
Query that works:
SELECT * WHERE {?s ?p "sdfsdf"@en}
I want “sdfsdf” to be an attribute in general like ?o@en.
How should i query then?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Filter by the language of the object:
Note that your results will be of the form
"sdfsdf"@en, rather than just the lexical form"sdfsdf". (You can do that additional work in SPARQL 1.1, and processors like ARQ using extensions)