Page MenuHomeSoftware Heritage
Paste P1515

checkFileExists
ActivePublic

Authored by jayeshv on Oct 26 2022, 2:56 PM.
query checkFileExists {
origin(url: "https://github.com/rdicosmo/parmap") {
url
latestVisit(requireSnapshot: true) {
date
latestStatus(requireSnapshot: true) {
date
snapshot {
swhid
branches(first: 1, nameInclude: "heads/master", types: [revision]) {
nodes {
targetType
target {
... on Revision {
swhid
directory {
swhid
entries(first: 1, nameInclude: "codeMeta.JSon") {
nodes {
name {
text
}
target {
... on Content {
data {
url
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}