DevsDO / whocode-backend

Backend for the open source project inspired in http://indianswhodesign.in, made to expose all the developers from the Dominican Republic with their skills and contacts.
1 stars 0 forks source link

Crear el API en Amplify #3

Open gustavovalverde opened 4 years ago

gustavovalverde commented 4 years ago

Estructuctura de ejemplo:

type Profile @model {
  id: ID!
  name: String
  username: String!
  summary: String
  roles: [Role]
  skills: [String]
  languages: [Language]
  image: Image
  social_networks: [String]
}

type Language {
  id: ID!
  name: String!
}

type Role {
  id: ID!
  name: String!
}

type Image @model {
  id: ID!
  url: String!
  location: String!
}