Scrape Asset GraphQL Mutation

- Adds support for force scraping the asset via a GraphQL mutation.
This commit is contained in:
Wyatt Johnson
2018-03-05 11:53:52 -07:00
parent 8d147dbf47
commit a749a13786
3 changed files with 26 additions and 0 deletions
+9
View File
@@ -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 {