missing CacheProcessOutput 🐥

This commit is contained in:
Will Holcomb
2021-07-06 12:40:17 -04:00
committed by dan13ram
parent b6ad318965
commit b377f71f4c

View File

@@ -198,6 +198,11 @@ type BrightIdStatus {
unique: Boolean!
}
type CacheProcessOutput {
error: String
success: Boolean!
}
type CollectiblesFavorites {
address: String
tokenId: String
@@ -2876,6 +2881,11 @@ type mutation_root {
on_conflict: skill_on_conflict
): skill
"""
perform the action: "updateAllBoxProfiles"
"""
updateAllBoxProfiles: uuid!
"""
perform the action: "updateBoxProfile"
"""
@@ -6319,6 +6329,16 @@ type query_root {
"""fetch data from the table: "skill" using primary key columns"""
skill_by_pk(id: uuid!): skill
"""
retrieve the result of action: "updateAllBoxProfiles"
"""
updateAllBoxProfiles(
"""
id of the action: "updateAllBoxProfiles"
"""
id: uuid!
): updateAllBoxProfiles
}
"""
@@ -9302,6 +9322,16 @@ type subscription_root {
"""fetch data from the table: "skill" using primary key columns"""
skill_by_pk(id: uuid!): skill
"""
retrieve the result of action: "updateAllBoxProfiles"
"""
updateAllBoxProfiles(
"""
id of the action: "updateAllBoxProfiles"
"""
id: uuid!
): updateAllBoxProfiles
}
scalar timestamptz
@@ -9327,6 +9357,23 @@ type TokenBalances {
seedBalance: String!
}
"""
fields of action: "updateAllBoxProfiles"
"""
type updateAllBoxProfiles {
"""the time at which this action was created"""
created_at: timestamptz
"""errors related to the invocation"""
errors: json
"""the unique id of an action"""
id: uuid
"""the output fields of this action"""
output: CacheProcessOutput
}
type UpdateBoxProfileResponse {
success: Boolean!
updatedProfiles: [String!]!