add wallet address to user

This commit is contained in:
João Geonizeli
2021-08-18 15:58:04 -03:00
parent 00337665bd
commit d21bd33436
14 changed files with 125 additions and 86 deletions

View File

@@ -7,9 +7,9 @@ module Types
graphql_name "User"
field :id, ID, null: false
field :email, String, null: false
field :first_name, String, null: false
field :last_name, String, null: false
field :full_name, String, null: false
field :email, String, null: false
field :wallet_address, String, null: true
end
end