Perform X3D Ontology query AllDocumentMetaInformation.rq using examples/HelloX3dAuthorsAnimationChain.ttl to produce output file AllDocumentMetaInformation.rq.txt: =========================== PREFIX rdf: PREFIX rdfs: PREFIX owl: PREFIX xsd: PREFIX x3d: PREFIX x3do: ############################################### # AllDocumentMetaInformation.rq Query to identify all document meta information. SELECT ?metaName ?metaContent WHERE { ?meta a x3do:meta ; # Shorthand expression: a = rdf:type x3do:name ?metaName ; x3do:content ?metaContent . } # TODO can we create an equivalent query using :head :hasMeta? # Note :meta has a :fieldMetaHasParenthead property ############################################### -------------------------------------------------------------------------------------------------------------------------------------------------------- | metaName | metaContent | ======================================================================================================================================================== | "created" | "5 October 2000" | | "reference" | "Chapter07-EventAnimationInterpolation-EventTracing.pdf" | | "license" | "../license.html" | | "creator" | "Don Brutzman" | | "identifier" | "https://www.web3d.org/x3d/content/examples/X3dForWebAuthors/Chapter07EventAnimationInterpolation/HelloX3dAuthorsAnimationChain.x3d" | | "description" | "Fully developed animation-chain example showing spinning globe and text: Hello!" | | "title" | "HelloX3dAuthorsAnimationChain.x3d" | | "generator" | "X3D-Edit 4.0, https://www.web3d.org/x3d/tools/X3D-Edit" | | "modified" | "7 September 2024" | | "reference" | "Chapter07-EventAnimationInterpolation.10StepAnimationDesignProcess.pdf" | --------------------------------------------------------------------------------------------------------------------------------------------------------