hg.sr.ht API Documentation
Queries
me
@access(scope:PROFILE, kind:RO)
Returns the authenticated user.
Returns User!
Example Query
query me {
me {
id
created
updated
canonicalName
username
email
url
location
bio
repository {
...Repository
}
repositories {
...RepositoryCursor
}
}
}
repositories
@access(scope:REPOSITORIES, kind:RO)
Returns repositories that the authenticated user has access to.
NOTE: in this version of the API, only repositories owned by the authenticated user are returned, but in the future the default behavior will be to return all repositories that the user either (1) has been given explicit access to via ACLs or (2) has implicit access to either by ownership or group membership.
Returns RepositoryCursor
Argumentscursor
- Cursor
Example Query
query repositories($cursor: Cursor) {
repositories(cursor: $cursor) {
results {
...Repository
}
cursor
}
}
user
@access(scope:PROFILE, kind:RO)
Returns a specific user.
Returns User
Argumentsusername
- String!
Example Query
query user($username: String!) {
user(username: $username) {
id
created
updated
canonicalName
username
email
url
location
bio
repository {
...Repository
}
repositories {
...RepositoryCursor
}
}
}
userWebhook
Returns details of a user webhook subscription by its ID.
Returns WebhookSubscription
Argumentsid
- Int!
Example Query
query userWebhook($id: Int!) {
userWebhook(id: $id) {
id
events
query
url
client {
...OAuthClient
}
deliveries {
...WebhookDeliveryCursor
}
sample
}
}
userWebhooks
Returns a list of user webhook subscriptions. For clients authenticated with a personal access token, this returns all webhooks configured by all GraphQL clients for your account. For clients authenticated with an OAuth 2.0 access token, this returns only webhooks registered for your client.
Returns WebhookSubscriptionCursor!
Argumentscursor
- Cursor
Example Query
query userWebhooks($cursor: Cursor) {
userWebhooks(cursor: $cursor) {
results {
...WebhookSubscription
}
cursor
}
}
version
Returns API version information.
Returns Version!
Example Query
query version {
version {
major
minor
patch
deprecationDate
features {
...Features
}
settings {
...Settings
}
}
}
webhook
Returns information about the webhook currently being processed. This is not valid during normal queries over HTTP, and will return an error if used outside of a webhook context.
Returns WebhookPayload!
Example Query
query webhook {
webhook {
uuid
event
date
}
}
Mutations
createRepository
@access(scope:REPOSITORIES, kind:RW)
Creates a new mercurial repository
Returns Repository!
Argumentsname
- String!visibility
- Visibility!description
- String
Example Query
query createRepository($name: String!, $visibility: Visibility!, $description: String) {
createRepository(name: $name, visibility: $visibility, description: $description) {
id
created
updated
owner {
...Entity
}
name
description
visibility
readme
nonPublishing
accessControlList {
...ACLCursor
}
tip {
...Revision
}
heads {
...RevisionCursor
}
log {
...RevisionCursor
}
bookmarks {
...NamedRevisionCursor
}
branches {
...NamedRevisionCursor
}
tags {
...NamedRevisionCursor
}
files {
...FileCursor
}
cat
}
}
createUserWebhook
Creates a new user webhook subscription. When an event from the provided list of events occurs, the 'query' parameter (a GraphQL query) will be evaluated and the results will be sent to the provided URL as the body of an HTTP POST request. The list of events must include at least one event, and no duplicates.
This query is evaluated in the webhook context, such that query { webhook } may be used to access details of the event which trigged the webhook. The query may not make any mutations.
Returns WebhookSubscription!
Argumentsconfig
- UserWebhookInput!
Example Query
query createUserWebhook($config: UserWebhookInput!) {
createUserWebhook(config: $config) {
id
events
query
url
client {
...OAuthClient
}
deliveries {
...WebhookDeliveryCursor
}
sample
}
}
deleteACL
@access(scope:ACLS, kind:RW)
Deletes an entry from the access control list
Returns ACL!
Argumentsid
- Int!
Example Query
query deleteACL($id: Int!) {
deleteACL(id: $id) {
id
created
repository {
...Repository
}
entity {
...Entity
}
mode
}
}
deleteRepository
@access(scope:REPOSITORIES, kind:RW)
Deletes a mercurial repository
Returns Repository!
Argumentsid
- Int!
Example Query
query deleteRepository($id: Int!) {
deleteRepository(id: $id) {
id
created
updated
owner {
...Entity
}
name
description
visibility
readme
nonPublishing
accessControlList {
...ACLCursor
}
tip {
...Revision
}
heads {
...RevisionCursor
}
log {
...RevisionCursor
}
bookmarks {
...NamedRevisionCursor
}
branches {
...NamedRevisionCursor
}
tags {
...NamedRevisionCursor
}
files {
...FileCursor
}
cat
}
}
deleteUser
Deletes the authenticated user's account. Internal use only.
Returns Int!
Example Query
query deleteUser {
deleteUser {
}
}
deleteUserWebhook
Deletes a user webhook. Any events already queued may still be delivered after this request completes. Clients authenticated with a personal access token may delete any webhook registered for their account, but authorized OAuth 2.0 clients may only delete their own webhooks. Manually deleting a webhook configured by a third-party client may cause unexpected behavior with the third-party integration.
Returns WebhookSubscription!
Argumentsid
- Int!
Example Query
query deleteUserWebhook($id: Int!) {
deleteUserWebhook(id: $id) {
id
events
query
url
client {
...OAuthClient
}
deliveries {
...WebhookDeliveryCursor
}
sample
}
}
updateACL
@access(scope:ACLS, kind:RW)
Adds or updates a user in the access control list
Returns ACL!
ArgumentsrepoId
- Int!mode
- AccessMode!entity
- ID!
Example Query
query updateACL($repoId: Int!, $mode: AccessMode!, $entity: ID!) {
updateACL(repoId: $repoId, mode: $mode, entity: $entity) {
id
created
repository {
...Repository
}
entity {
...Entity
}
mode
}
}
updateRepository
@access(scope:REPOSITORIES, kind:RW)
Updates the metadata for a mercurial repository
Returns Repository!
ArgumentsExample Query
query updateRepository($id: Int!, $input: RepoInput!) {
updateRepository(id: $id, input: $input) {
id
created
updated
owner {
...Entity
}
name
description
visibility
readme
nonPublishing
accessControlList {
...ACLCursor
}
tip {
...Revision
}
heads {
...RevisionCursor
}
log {
...RevisionCursor
}
bookmarks {
...NamedRevisionCursor
}
branches {
...NamedRevisionCursor
}
tags {
...NamedRevisionCursor
}
files {
...FileCursor
}
cat
}
}
Definitions
ACL
Fieldsid
- Int!created
- Time!repository
- Repository!entity
- Entity!@access(scope:PROFILE, kind:RO)
mode
- AccessMode
ACLCursor
A cursor for enumerating access control list entries
If there are additional results available, the cursor object may be passed back into the same endpoint to retrieve another page. If the cursor is null, there are no remaining results to return.
FieldsAccessKind
Enum ValuesRO
RW
AccessMode
Enum ValuesRO
- Read-only
RW
- Read/write
AccessScope
Enum ValuesPROFILE
REPOSITORIES
REVISIONS
ACLS
Boolean
The Boolean
scalar type represents true
or false
.
Cursor
Entity
Fieldsid
- Int!created
- Time!updated
- Time!canonicalName
- String!- The canonical name of this entity. For users, this is their username prefixed with '~'. Additional entity types will be supported in the future.
repository
- Repository@access(scope:REPOSITORIES, kind:RO)
- Returns a specific repository owned by the entity.
repositories
- RepositoryCursor!@access(scope:REPOSITORIES, kind:RO)
- Returns a list of repositories owned by the entity.
Features
Describes the status of optional features
Fieldsartifacts
- Boolean!
File
Fieldsname
- String!
FileCursor
A cursor for enumerating files in a repository
If there are additional results available, the cursor object may be passed back into the same endpoint to retrieve another page. If the cursor is null, there are no remaining results to return.
FieldsFloat
The Float
scalar type represents signed double-precision fractional values as specified by IEEE 754.
ID
The ID
scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as "4") or integer (such as 4) input value will be accepted as an ID.
Int
The Int
scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
NamedRevision
FieldsNamedRevisionCursor
A cursor for enumerating bookmarks, tags, and branches
If there are additional results available, the cursor object may be passed back into the same endpoint to retrieve another page. If the cursor is null, there are no remaining results to return.
Fieldsresults
- [NamedRevision]!cursor
- Cursor
OAuthClient
Fieldsuuid
- String!
RepoInput
Fieldsname
- String- Omit these fields to leave them unchanged, or set them to null to clear their value.
description
- Stringvisibility
- Visibilityreadme
- String- Updates the custom README associated with this repository. Note that the provided HTML will be sanitized when displayed on the web; see https://man.sr.ht/markdown/#post-processing
nonPublishing
- Boolean- Controls whether this repository is a non-publishing repository.
Repository
Fieldsid
- Int!created
- Time!updated
- Time!owner
- Entity!@access(scope:PROFILE, kind:RO)
name
- String!description
- Stringvisibility
- Visibility!readme
- String- The repository's custom README, if set. NOTICE: This returns unsanitized HTML. It is the client's responsibility to sanitize this for display on the web, if so desired.
nonPublishing
- Boolean!- Whether or not this repository is a non-publishing repository.
accessControlList
- ACLCursor!@access(scope:ACLS, kind:RO)
tip
- Revision@access(scope:REVISIONS, kind:RO)
- The tip reference for this repository (latest commit)
heads
- RevisionCursor!@access(scope:REVISIONS, kind:RO)
- Returns the list of open heads in the repository (like `hg heads`) If `rev` is specified, return only open heads on the branch associated with the given revision (like `hg heads REV`)
log
- RevisionCursor!@access(scope:REVISIONS, kind:RO)
- Returns a list of commits (like `hg log`) If `rev` is specified, only show the given commit (like `hg log --rev REV`)
bookmarks
- NamedRevisionCursor!@access(scope:REVISIONS, kind:RO)
- Returns a list of bookmarks
branches
- NamedRevisionCursor!@access(scope:REVISIONS, kind:RO)
- Returns a list of branches
tags
- NamedRevisionCursor!@access(scope:REVISIONS, kind:RO)
- Returns a list of tags
files
- FileCursor!@access(scope:REVISIONS, kind:RO)
- Returns a list of files matching the given path
cat
- String@access(scope:REVISIONS, kind:RO)
- Returns the contents of a file given a relative path and an optional revset
RepositoryCursor
A cursor for enumerating a list of repositories
If there are additional results available, the cursor object may be passed back into the same endpoint to retrieve another page. If the cursor is null, there are no remaining results to return.
Fieldsresults
- [Repository]!cursor
- Cursor
RepositoryEvent
Fieldsuuid
- String!event
- WebhookEvent!date
- Time!repository
- Repository!
Revision
FieldsRevisionCursor
A cursor for enumerating revisions
If there are additional results available, the cursor object may be passed back into the same endpoint to retrieve another page. If the cursor is null, there are no remaining results to return.
FieldsSettings
Instance specific settings
FieldssshUser
- String!
String
The String
scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
Tag
FieldsTime
Upload
User
FieldsUserWebhookInput
Fieldsurl
- String!events
- [WebhookEvent]!query
- String!
UserWebhookSubscription
Fieldsid
- Int!events
- [WebhookEvent]!query
- String!url
- String!client
- OAuthClientdeliveries
- WebhookDeliveryCursor!sample
- String!
Version
FieldsVisibility
Enum ValuesPUBLIC
- Visible to everyone, listed on your profile
UNLISTED
- Visible to everyone (if they know the URL), not listed on your profile
PRIVATE
- Not visible to anyone except those explicitly added to the access list
WebhookDelivery
Fieldsuuid
- String!date
- Time!event
- WebhookEvent!subscription
- WebhookSubscription!requestBody
- String!responseBody
- String- These details are provided only after a response is received from the remote server. If a response is sent whose Content-Type is not text/*, or cannot be decoded as UTF-8, the response body will be null. It will be truncated after 64 KiB.
responseHeaders
- StringresponseStatus
- Int
WebhookDeliveryCursor
A cursor for enumerating a list of webhook deliveries
If there are additional results available, the cursor object may be passed back into the same endpoint to retrieve another page. If the cursor is null, there are no remaining results to return.
Fieldsresults
- [WebhookDelivery]!cursor
- Cursor
WebhookEvent
Enum ValuesREPO_CREATED
REPO_UPDATE
REPO_DELETED
WebhookPayload
Fieldsuuid
- String!event
- WebhookEvent!date
- Time!
WebhookSubscription
Fieldsid
- Int!events
- [WebhookEvent]!query
- String!url
- String!client
- OAuthClient- If this webhook was registered by an authorized OAuth 2.0 client, this field is non-null.
deliveries
- WebhookDeliveryCursor!- All deliveries which have been sent to this webhook.
sample
- String!- Returns a sample payload for this subscription, for testing purposes
WebhookSubscriptionCursor
A cursor for enumerating a list of webhook subscriptions
If there are additional results available, the cursor object may be passed back into the same endpoint to retrieve another page. If the cursor is null, there are no remaining results to return.
Fieldsresults
- [WebhookSubscription]!cursor
- Cursor
Directives
@access
Decorates fields for which access requires a particular OAuth 2.0 scope with read or write access. For the meta.sr.ht API, you have access to all public information without any special permissions - user profile information, public keys, and so on.
Argumentsscope
- AccessScope!kind
- AccessKind!
@defer
Directs the executor to defer this fragment when the if
argument is true or undefined.
@deprecated
Marks an element of a GraphQL schema as no longer supported.
Argumentsreason
- String- Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax, as specified by [CommonMark](https://commonmark.org/).
@include
Directs the executor to include this field or fragment only when the if
argument is true.
if
- Boolean!- Included when true.
@internal
This used to decorate fields which are for internal use, and are not available to normal API users.
@oneOf
Indicates exactly one field must be supplied and this field must not be null
.
@private
This is used to decorate fields which are only accessible with a personal access token, and are not available to clients using OAuth 2.0 access tokens.
@scopehelp
Used to provide a human-friendly description of an access scope
Argumentsdetails
- String!
@skip
Directs the executor to skip this field or fragment when the if
argument is true.
if
- Boolean!- Skipped when true.
@specifiedBy
Exposes a URL that specifies the behavior of this scalar.
Argumentsurl
- String!- The URL that specifies the behavior of this scalar.