I want to get all the properties in the statement section in the wikidata page. For example, South Korea there are statement, identifier and reference link (wikipedia or other link) sections respectively. I want to get the statement properties only excluding identifier and other stuff. I got all the properties with the below query but I am still struggling excluding id and other stuffs. Would you help me adding additional conditions? Thank you for your kindness in advance.
SELECT DISTINCT ?wd ?wdLabel {
BIND (wd:Q884 AS ?subject)
?subject ?p ?statement .
?wd wikibase:claim ?p.
SERVICE wikibase:label { bd:serviceParam wikibase:language "ko,en" }
} ORDER BY ?wdLabel