How to get all of the predicates of an object in SPARQL

I finally discovered the other day how to get all of the predicates of an object in SPARQL. For this example I'll query the University of Cambridge endpoint to get all of the information they have about The Lord of the Rings.
SELECT * WHERE
{
    'http://data.lib.cam.ac.uk/id/entry/cambrdgedb_1327612' ?p ?o .
}
This query returns the following data:
po
http://purl.org/dc/terms/titleThe Lord of the Rings
http://purl.org/dc/terms/typehttp://data.lib.cam.ac.uk/id/type/1cb251ec0d568de6a929b520c4aed8d1
http://purl.org/dc/terms/typehttp://data.lib.cam.ac.uk/id/type/46657eb180382684090fda2b5670335d
http://purl.org/dc/terms/identifierUkCU1327612
http://purl.org/dc/terms/identifierurn:isbn:0048231576
http://purl.org/dc/terms/issued1979
http://purl.org/dc/terms/languagehttp://id.loc.gov/vocabulary/iso639-2/eng
http://RDVocab.info/ElementsplaceOfPublicationhttp://id.loc.gov/vocabulary/countries/enk
http://purl.org/ontology/bibo/isbn0048231576
http://purl.org/dc/terms/creatorhttp://data.lib.cam.ac.uk/id/entity/cambrdgedb_041c446ee6c5c4bd5a63bcc2debe1351
http://iflastandards.info/ns/isbd/elements/P1016London
http://purl.org/dc/terms/publisherhttp://data.lib.cam.ac.uk/id/entity/cambrdgedb_b7c309134a35a5455692006ee550ddf6
http://purl.org/dc/terms/created1979
http://purl.org/dc/terms/extenthttp://data.lib.cam.ac.uk/id/entity/cambrdgedb_935bf1a181de0991dce6d3ee56b53ba4
http://iflastandards.info/ns/isbd/elements/P10083rd ed
You can run this query yourself