added getBoxProfile action

This commit is contained in:
Pacien Boisson
2020-07-13 11:57:53 +02:00
committed by Hammad Jutt
parent 2212579662
commit 51a4eddbbd

View File

@@ -1,3 +1,10 @@
type Query {
getBoxProfile (
address: String
): BoxProfile
}
type Mutation {
updateBoxProfile : UpdateBoxProfileResponse
}
@@ -10,3 +17,12 @@ type UpdateBoxProfileResponse {
updatedProfiles : [String!]!
}
type BoxProfile {
name : String
description : String
location : String
job : String
emoji : String
imageUrl : String
}