mirror of
https://github.com/wassname/talk.git
synced 2026-09-09 11:38:08 +08:00
Scrape Asset GraphQL Mutation
- Adds support for force scraping the asset via a GraphQL mutation.
This commit is contained in:
@@ -1395,6 +1395,12 @@ type SetUserRoleResponse implements Response {
|
||||
errors: [UserError!]
|
||||
}
|
||||
|
||||
type ForceScrapeAssetResponse implements Response {
|
||||
|
||||
# An array of errors relating to the mutation that occurred.
|
||||
errors: [UserError!]
|
||||
}
|
||||
|
||||
# All mutations for the application are defined on this object.
|
||||
type RootMutation {
|
||||
|
||||
@@ -1489,6 +1495,9 @@ type RootMutation {
|
||||
|
||||
# Stop Ignoring comments by another user.
|
||||
stopIgnoringUser(id: ID!): StopIgnoringUserResponse
|
||||
|
||||
# forceScrapeAsset will force scrape the Asset with the given ID.
|
||||
forceScrapeAsset(id: ID!): ForceScrapeAssetResponse
|
||||
}
|
||||
|
||||
type UsernameChangedPayload {
|
||||
|
||||
Reference in New Issue
Block a user