Skip to content

Commit

Permalink
fix: Unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
bprusinowski committed Mar 7, 2024
1 parent 18d3bfb commit 3797a3b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/rdf/query-latest-cube-iri.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ SELECT ?iri WHERE {
?versionHistory schema:hasPart ?iri .
?iri schema:version ?version .
?iri schema:creativeWorkStatus ?status .
?oldIri schema:creativeWorkStatus ?oldStatus .
FILTER(NOT EXISTS { ?iri schema:expires ?expires . } && ?status IN (?oldStatus, <https://ld.admin.ch/vocabulary/CreativeWorkStatus/Published>))
FILTER(NOT EXISTS { ?iri schema:expires ?expires . } && ?status = <https://ld.admin.ch/vocabulary/CreativeWorkStatus/Published>)
}
}
}
Expand Down

0 comments on commit 3797a3b

Please sign in to comment.