apps.graphql 709 B

12345678910111213141516171819202122232425
  1. type App @entity {
  2. "Runtime entity identifier (EntityId)"
  3. id: ID!
  4. "The name of the App"
  5. name: String! @unique
  6. "Member owning the App"
  7. ownerMember: Membership!
  8. "Url where user can read more about the project or company for this app"
  9. websiteUrl: String
  10. "Url to the app"
  11. useUri: String
  12. smallIcon: String
  13. mediumIcon: String
  14. bigIcon: String
  15. "Tagline of the app"
  16. oneLiner: String
  17. description: String
  18. termsOfService: String
  19. "List of platforms on which the app will be available, e.g. [mobile, web, native]"
  20. platforms: [String]
  21. category: String
  22. authKey: String
  23. appVideos: [Video!] @derivedFrom(field: "entryApp")
  24. appChannels: [Channel!] @derivedFrom(field: "entryApp")
  25. }