mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.1 KiB
71 lines
1.1 KiB
# ===============================================
|
|
# WEBHOOKS
|
|
# ===============================================
|
|
|
|
extend type Query {
|
|
hooks: [Hook]
|
|
|
|
hookById(
|
|
id: UUID!
|
|
): Hook
|
|
}
|
|
|
|
extend type Mutation {
|
|
createHook(
|
|
name: String!
|
|
events: [String]!
|
|
url: String!
|
|
includeMetadata: Boolean!
|
|
includeContent: Boolean!
|
|
acceptUntrusted: Boolean!
|
|
authHeader: String
|
|
): HookCreateResponse
|
|
|
|
updateHook(
|
|
id: UUID!
|
|
patch: HookUpdateInput!
|
|
): DefaultResponse
|
|
|
|
deleteHook (
|
|
id: UUID!
|
|
): DefaultResponse
|
|
}
|
|
|
|
# -----------------------------------------------
|
|
# TYPES
|
|
# -----------------------------------------------
|
|
|
|
type Hook {
|
|
id: UUID
|
|
name: String
|
|
events: [String]
|
|
url: String
|
|
includeMetadata: Boolean
|
|
includeContent: Boolean
|
|
acceptUntrusted: Boolean
|
|
authHeader: String
|
|
state: HookState
|
|
lastErrorMessage: String
|
|
}
|
|
|
|
input HookUpdateInput {
|
|
name: String
|
|
events: [String]
|
|
url: String
|
|
includeMetadata: Boolean
|
|
includeContent: Boolean
|
|
acceptUntrusted: Boolean
|
|
authHeader: String
|
|
}
|
|
|
|
enum HookState {
|
|
pending
|
|
error
|
|
success
|
|
}
|
|
|
|
type HookCreateResponse {
|
|
operation: Operation
|
|
hook: Hook
|
|
}
|