Page MenuHomeSoftware Heritage
Paste P1297

Sample GraphQL query
ActivePublic

Authored by jayeshv on Feb 23 2022, 10:51 AM.
query myquery {
origin(url: "https://github.com/python/cpython") {
url
id
visits(first: 2) {
nodes {
status
date
}
pageInfo {
endCursor
hasNextPage
}
}
}
origins(first: 2, after: "110") {
nodes {
url
id
}
pageInfo {
hasNextPage
endCursor
}
}
}