[ { "@id": "https://w3id.org/np/RAv8CmjCOIU-TO0A_4dfdghFSpR2qyhFpCetG0pN6K-W4/pubinfo", "@graph": [ { "@id": "https://orcid.org/0000-0002-1267-0234", "http://xmlns.com/foaf/0.1/name": [ { "@value": "Tobias Kuhn" } ] }, { "@id": "https://w3id.org/np/RAv8CmjCOIU-TO0A_4dfdghFSpR2qyhFpCetG0pN6K-W4", "http://purl.org/dc/terms/created": [ { "@value": "2026-08-26T13:33:02Z", "@type": "http://www.w3.org/2001/XMLSchema#dateTime" } ], "http://purl.org/dc/terms/creator": [ { "@id": "https://orcid.org/0000-0002-1267-0234" } ], "http://purl.org/dc/terms/hasVersion": [ { "@value": "2" } ], "http://purl.org/dc/terms/license": [ { "@id": "https://creativecommons.org/licenses/by/4.0/" } ], "http://purl.org/nanopub/x/embeds": [ { "@id": "https://w3id.org/np/RAv8CmjCOIU-TO0A_4dfdghFSpR2qyhFpCetG0pN6K-W4/get-nanosuggestion-comments" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { "@value": "Get the comments on a nanosuggestion" } ] }, { "@id": "https://w3id.org/np/RAv8CmjCOIU-TO0A_4dfdghFSpR2qyhFpCetG0pN6K-W4/sig", "http://purl.org/nanopub/x/hasAlgorithm": [ { "@value": "RSA" } ], "http://purl.org/nanopub/x/hasPublicKey": [ { "@value": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCwUtewGCpT5vIfXYE1bmf/Uqu1ojqnWdYxv+ySO80ul8Gu7m8KoyPAwuvaPj0lvPtHrg000qMmkxzKhYknEjq8v7EerxZNYp5B3/3+5ZpuWOYAs78UnQVjbHSmDdmryr4D4VvvNIiUmd0yxci47dTFUj4DvfHnGd6hVe5+goqdcwIDAQAB" } ], "http://purl.org/nanopub/x/hasSignature": [ { "@value": "p0dqLsyUk9iAbXzemIfMW0KnIJ8Z6rNZLzqfUZdivFxgL4Wzegn849O907SkIcdYq1SMIfs4u9ITEiM4r/6qQHH2MldhxYkXUcX01x/KeP16SR0tjhMImCNr2/KOL7JSEG6T2NFH4F/pgojgz6IJrJeTJBsm3duekpFYxEukw1s=" } ], "http://purl.org/nanopub/x/hasSignatureTarget": [ { "@id": "https://w3id.org/np/RAv8CmjCOIU-TO0A_4dfdghFSpR2qyhFpCetG0pN6K-W4" } ], "http://purl.org/nanopub/x/signedBy": [ { "@id": "https://orcid.org/0000-0002-1267-0234" } ] } ] }, { "@id": "https://w3id.org/np/RAv8CmjCOIU-TO0A_4dfdghFSpR2qyhFpCetG0pN6K-W4/provenance", "@graph": [ { "@id": "https://w3id.org/np/RAv8CmjCOIU-TO0A_4dfdghFSpR2qyhFpCetG0pN6K-W4/assertion", "http://www.w3.org/ns/prov#wasAttributedTo": [ { "@id": "https://orcid.org/0000-0002-1267-0234" } ] } ] }, { "@id": "https://w3id.org/np/RAv8CmjCOIU-TO0A_4dfdghFSpR2qyhFpCetG0pN6K-W4/assertion", "@graph": [ { "@id": "https://w3id.org/np/RAv8CmjCOIU-TO0A_4dfdghFSpR2qyhFpCetG0pN6K-W4/get-nanosuggestion-comments", "http://purl.org/dc/terms/description": [ { "@value": "Returns the whole comment thread of a nanosuggestion: every Nanoarguments content node that replies to it via as:inReplyTo at any depth, with its text, author and date, oldest first. Replies to replies show what they are replying to." } ], "http://purl.org/dc/terms/license": [ { "@id": "http://www.apache.org/licenses/LICENSE-2.0" } ], "@type": [ "https://w3id.org/kpxl/grlc/grlc-query" ], "http://www.w3.org/2000/01/rdf-schema#label": [ { "@value": "Get the comments on a nanosuggestion" } ], "https://w3id.org/kpxl/grlc/endpoint": [ { "@id": "https://w3id.org/np/l/nanopub-query-1.1/repo/type/29e2f808e4864fca4930806dee70c4a32df54a63ee90156244910a47d3443736" } ], "https://w3id.org/kpxl/grlc/sparql": [ { "@value": "\nprefix rdf: \nprefix rdfs: \nprefix dct: \nprefix foaf: \nprefix np: \nprefix npa: \nprefix npx: \nprefix schema: \nprefix as: \n\nselect distinct ?comment ?by ?by_label ?date ?in_reply_to ?reply_target ?np where {\n # The thread: everything replying to this nanosuggestion, at any depth. Kept in a\n # sub-select so the optimizer cannot start from the unconstrained \"?c a schema:Statement\"\n # pattern, which scans every statement on the network (RDF4J: \"Queue full\").\n # distinct here and in the outer select: the repo holds each nanopub's triples in\n # several graph contexts, so the path join multiplies rows without it.\n { select distinct ?c ?parent ?root where {\n values ?_suggestion_iri {}\n ?c as:inReplyTo+ ?_suggestion_iri .\n ?c as:inReplyTo ?parent .\n bind(?_suggestion_iri as ?root)\n } }\n graph npa:graph {\n ?np npa:hasValidSignatureForPublicKeyHash ?pubkey ; np:hasAssertion ?a ; dct:created ?date .\n filter not exists { ?npi npx:invalidates ?np ; npa:hasValidSignatureForPublicKeyHash ?pubkey . }\n optional { ?np dct:creator ?by }\n }\n graph ?a { ?c a schema:Statement ; rdf:value ?comment . }\n bind(?c as ?reply_target)\n optional { ?by foaf:name ?by_label }\n optional { ?parent rdf:value ?pv }\n bind(if(?parent = ?root, '', coalesce(substr(str(?pv), 1, 60), str(?parent))) as ?in_reply_to)\n}\norder by ?date\n" } ] } ] }, { "@id": "https://w3id.org/np/RAv8CmjCOIU-TO0A_4dfdghFSpR2qyhFpCetG0pN6K-W4/Head", "@graph": [ { "@id": "https://w3id.org/np/RAv8CmjCOIU-TO0A_4dfdghFSpR2qyhFpCetG0pN6K-W4", "http://www.nanopub.org/nschema#hasAssertion": [ { "@id": "https://w3id.org/np/RAv8CmjCOIU-TO0A_4dfdghFSpR2qyhFpCetG0pN6K-W4/assertion" } ], "http://www.nanopub.org/nschema#hasProvenance": [ { "@id": "https://w3id.org/np/RAv8CmjCOIU-TO0A_4dfdghFSpR2qyhFpCetG0pN6K-W4/provenance" } ], "http://www.nanopub.org/nschema#hasPublicationInfo": [ { "@id": "https://w3id.org/np/RAv8CmjCOIU-TO0A_4dfdghFSpR2qyhFpCetG0pN6K-W4/pubinfo" } ], "@type": [ "http://www.nanopub.org/nschema#Nanopublication" ] } ] } ]