Page MenuHomeSoftware Heritage

schema.graphql
No OneTemporary

schema.graphql

interface Node {
id: ID!
}
interface SwhNode {
swhid: String!
}
type PageInfo {
endCursor: String
hasNextPage: Boolean!
}
# Origin
type Origin implements Node {
url: String!
id: ID!
}
type OriginEdge {
cursor: String!
node: [Origin]
}
type OriginConnection {
edges: [OriginEdge]
nodes: [Origin]
pageInfo: PageInfo!
totalCount: Int
}
# Origin end
type Query {
"""
Get an origin with its url
"""
origin(
url: String!
): Origin
"""
Get a list of origins
matching the given filters
"""
origins(
first: Int
after: String
): OriginConnection!
}

File Metadata

Mime Type
text/plain
Expires
Thu, Sep 18, 4:50 PM (17 h, 39 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3403929

Event Timeline