Retrieve the RDF of a chosen notice

PREFIX epo: <http://data.europa.eu/a4g/ontology#>

CONSTRUCT {
  ?s ?p ?o .
}
WHERE {
  FILTER (?publicationNumber = "00665936-2024")
  GRAPH ?g {
    ?Notice a epo:Notice ;
            epo:hasNoticePublicationNumber ?publicationNumber .
  }
  GRAPH ?g {
    ?s ?p ?o .
  }
}
sparql

Any comments on the documentation?