materio_extension.base.graphqls 710 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. scalar Violation
  2. type Materiau {
  3. id: Int!
  4. uuid: String!
  5. title: String!
  6. author: String
  7. memo: String
  8. linked_materials: [Materiau]
  9. images: [Image]
  10. }
  11. type Article {
  12. id: Int!
  13. uuid: String!
  14. title: String!
  15. author: String
  16. body: String
  17. linked_materials: [Materiau]
  18. images: [Image]
  19. videos: [VideoLink]
  20. # date: [String]
  21. # showroom: [Showroom]
  22. # source: Link
  23. # tags: []
  24. # thesaurus: []
  25. }
  26. # type Showroom {
  27. # id: Int!
  28. # uuid: String!
  29. # }
  30. #
  31. #
  32. # type Link {
  33. # url: String!
  34. # title: String
  35. # }
  36. type VideoLink {
  37. url: String
  38. }
  39. type Image {
  40. id: Int!
  41. url: String!
  42. alt: String
  43. style_minicard: ImageStyle
  44. }
  45. type ImageStyle {
  46. width: Int
  47. height: Int
  48. url: String
  49. }