materio_extension.base.graphqls 941 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. source: Link
  21. showroom: Showroom
  22. tags: [Tag]
  23. thesaurus: [Thesaurus]
  24. date: Date
  25. }
  26. type Link {
  27. url: String
  28. title: String
  29. }
  30. type Showroom {
  31. id: Int!
  32. uuid: String!
  33. name: String!
  34. images: [Image]
  35. # email: String
  36. # address: Adress
  37. # phone: String
  38. }
  39. type Tag {
  40. id: Int!
  41. uuid: String!
  42. name: String!
  43. }
  44. type Thesaurus {
  45. id: Int!
  46. uuid: String!
  47. name: String!
  48. }
  49. type Date {
  50. start: String
  51. end: String
  52. }
  53. type VideoLink {
  54. url: String
  55. }
  56. type Image {
  57. id: Int!
  58. url: String!
  59. alt: String
  60. style_minicard: ImageStyle
  61. }
  62. type ImageStyle {
  63. width: Int
  64. height: Int
  65. url: String
  66. }