Skip to content

Instantly share code, notes, and snippets.

@kamilkisiela
Created August 21, 2018 15:47
Show Gist options
  • Save kamilkisiela/046fb70ddf89878958e634e2aa876a65 to your computer and use it in GitHub Desktop.
Save kamilkisiela/046fb70ddf89878958e634e2aa876a65 to your computer and use it in GitHub Desktop.
type User @entity {
 id: String @id
 profile: Profile! @embedded
 email: @column
 photos: [Photo] @link
}
type Profile @embedded {
 fullName: String
}
type Photo @entity {
 id: String! @id
 url: String! @column 
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment